View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
3   // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2019.08.22 at 12:17:55 PM UTC 
6   //
7   
8   
9   package ejava.projects.esales.dto;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlID;
15  import javax.xml.bind.annotation.XmlSchemaType;
16  import javax.xml.bind.annotation.XmlSeeAlso;
17  import javax.xml.bind.annotation.XmlType;
18  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
19  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20  
21  
22  /**
23   * <p>Java class for ReferencedType complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="ReferencedType"&gt;
29   *   &lt;complexContent&gt;
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
31   *       &lt;attribute name="refid" type="{http://www.w3.org/2001/XMLSchema}ID" /&gt;
32   *     &lt;/restriction&gt;
33   *   &lt;/complexContent&gt;
34   * &lt;/complexType&gt;
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "ReferencedType")
41  @XmlSeeAlso({
42      Account.class,
43      Address.class,
44      Auction.class,
45      Image.class
46  })
47  public class ReferencedType {
48  
49      @XmlAttribute(name = "refid")
50      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
51      @XmlID
52      @XmlSchemaType(name = "ID")
53      protected String refid;
54  
55      /**
56       * Default no-arg constructor
57       * 
58       */
59      public ReferencedType() {
60          super();
61      }
62  
63      /**
64       * Fully-initialising value constructor
65       * 
66       */
67      public ReferencedType(final String refid) {
68          this.refid = refid;
69      }
70  
71      /**
72       * Gets the value of the refid property.
73       * 
74       * @return
75       *     possible object is
76       *     {@link String }
77       *     
78       */
79      public String getRefid() {
80          return refid;
81      }
82  
83      /**
84       * Sets the value of the refid property.
85       * 
86       * @param value
87       *     allowed object is
88       *     {@link String }
89       *     
90       */
91      public void setRefid(String value) {
92          this.refid = value;
93      }
94  
95  }