View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.07.19 at 09:49:41 PM CDT 
6   //
7   
8   
9   package org.apache.ws.scout.model.uddi.v2;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * <p>Java class for publisherAssertion complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="publisherAssertion">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;sequence>
27   *         &lt;element ref="{urn:uddi-org:api_v2}fromKey"/>
28   *         &lt;element ref="{urn:uddi-org:api_v2}toKey"/>
29   *         &lt;element ref="{urn:uddi-org:api_v2}keyedReference"/>
30   *       &lt;/sequence>
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "publisherAssertion", propOrder = {
40      "fromKey",
41      "toKey",
42      "keyedReference"
43  })
44  public class PublisherAssertion {
45  
46      @XmlElement(required = true)
47      protected String fromKey;
48      @XmlElement(required = true)
49      protected String toKey;
50      @XmlElement(required = true)
51      protected KeyedReference keyedReference;
52  
53      /**
54       * Gets the value of the fromKey property.
55       * 
56       * @return
57       *     possible object is
58       *     {@link String }
59       *     
60       */
61      public String getFromKey() {
62          return fromKey;
63      }
64  
65      /**
66       * Sets the value of the fromKey property.
67       * 
68       * @param value
69       *     allowed object is
70       *     {@link String }
71       *     
72       */
73      public void setFromKey(String value) {
74          this.fromKey = value;
75      }
76  
77      /**
78       * Gets the value of the toKey property.
79       * 
80       * @return
81       *     possible object is
82       *     {@link String }
83       *     
84       */
85      public String getToKey() {
86          return toKey;
87      }
88  
89      /**
90       * Sets the value of the toKey property.
91       * 
92       * @param value
93       *     allowed object is
94       *     {@link String }
95       *     
96       */
97      public void setToKey(String value) {
98          this.toKey = value;
99      }
100 
101     /**
102      * Gets the value of the keyedReference property.
103      * 
104      * @return
105      *     possible object is
106      *     {@link KeyedReference }
107      *     
108      */
109     public KeyedReference getKeyedReference() {
110         return keyedReference;
111     }
112 
113     /**
114      * Sets the value of the keyedReference property.
115      * 
116      * @param value
117      *     allowed object is
118      *     {@link KeyedReference }
119      *     
120      */
121     public void setKeyedReference(KeyedReference value) {
122         this.keyedReference = value;
123     }
124 
125 }