KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > wsdl > def > Property


1 package org.jbpm.bpel.wsdl.def;
2
3 import java.io.Serializable JavaDoc;
4
5 import javax.wsdl.extensions.ExtensibilityElement;
6 import javax.xml.namespace.QName JavaDoc;
7
8 /**
9  * A property definition creates a globally unique name and associates it with
10  * an XML Schema simple type. The intent is not to create a new type, but to
11  * create a name that has greater significance than the type itself.
12  * @author Alejandro Guízar
13  * @version $Revision: 1.1 $ $Date: 2005/04/08 18:35:32 $
14  */

15 public interface Property extends ExtensibilityElement, Serializable JavaDoc {
16
17   /**
18    * Gets the name of this partner link type.
19    * @return the name in place
20    */

21   public QName JavaDoc getQName();
22
23   /**
24    * Sets the name of this partner link type.
25    * @param name the new name
26    */

27   public void setQName(QName JavaDoc name);
28   
29   /**
30    * Gets the type of this property.
31    * @return the type in place
32    */

33   public QName JavaDoc getType();
34
35   /**
36    * Sets the type of this property.
37    * @param type the new type
38    */

39   public void setType(QName JavaDoc type);
40 }
Popular Tags