01: /*
02: * $Id: ToImplFactory.java,v 1.6 2004/11/22 08:46:48 kowap Exp $
03: *
04: * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
05: * Berne University of Applied Sciences
06: * School of Engineering and Information Technology
07: * All rights reserved.
08: */
09: package bexee.model.xmltobpel;
10:
11: import org.xml.sax.Attributes;
12:
13: /**
14: * This class is used by the <a
15: * href="http://jakarta.apache.org/commons/digester/">Digester </a> for the
16: * transformation of To elements from a BPEL document into <code>ToImpl</code>
17: * objects. The creation of those objects is delegated to the
18: * <code>BPELElementFactory</code>.
19: *
20: * @author Pawel Kowalski
21: * @version $Revision: 1.6 $, $Date: 2004/11/22 08:46:48 $
22: */
23: public class ToImplFactory extends AbstractObjectCreationFactory {
24:
25: //**************************************************/
26: // create object
27: //**************************************************/
28:
29: /**
30: * Create a <code>ToImpl</code> instance using delegation to a
31: * <code>BPELElementFactory</code>.
32: *
33: * @param attributes
34: * an <code>Attributes</code> value
35: * @return an <code>ToImpl</code> value
36: * @exception Exception
37: * if an error occurs
38: */
39: public Object createObject(Attributes attributes) throws Exception {
40:
41: String variable = attributes.getValue(VARIABLE);
42: String part = attributes.getValue(PART);
43: String partnerLink = attributes.getValue(PARTNER_LINK);
44: String property = attributes.getValue(PROPERTY);
45:
46: return getElementFactory().createTo(variable, part, property,
47: partnerLink);
48: }
49: }
|