View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.dataaccessservice;
3   
4   import java.io.Serializable;
5   import javax.xml.bind.annotation.XmlAccessType;
6   import javax.xml.bind.annotation.XmlAccessorType;
7   import javax.xml.bind.annotation.XmlElement;
8   import javax.xml.bind.annotation.XmlType;
9   
10  
11  /**
12   * <p>Java class for DependencyWrapper complex type.
13   * 
14   * <p>The following schema fragment specifies the expected content contained within this class.
15   * 
16   * <pre>
17   * &lt;complexType name="DependencyWrapper">
18   *   &lt;complexContent>
19   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20   *       &lt;sequence>
21   *         &lt;element name="sourceuri" type="{http://www.w3.org/2001/XMLSchema}string"/>
22   *         &lt;element name="sourceaction" type="{http://www.w3.org/2001/XMLSchema}string"/>
23   *         &lt;element name="destinationuri" type="{http://www.w3.org/2001/XMLSchema}string"/>
24   *         &lt;element name="destinationaction" type="{http://www.w3.org/2001/XMLSchema}string"/>
25   *       &lt;/sequence>
26   *     &lt;/restriction>
27   *   &lt;/complexContent>
28   * &lt;/complexType>
29   * </pre>
30   * 
31   * 
32   */
33  @XmlAccessorType(XmlAccessType.FIELD)
34  @XmlType(name = "DependencyWrapper", propOrder = {
35      "sourceuri",
36      "sourceaction",
37      "destinationuri",
38      "destinationaction"
39  })
40  public class DependencyWrapper
41      implements Serializable
42  {
43  
44      private final static long serialVersionUID = 1L;
45      @XmlElement(required = true)
46      protected String sourceuri;
47      @XmlElement(required = true)
48      protected String sourceaction;
49      @XmlElement(required = true)
50      protected String destinationuri;
51      @XmlElement(required = true)
52      protected String destinationaction;
53  
54      /**
55       * Gets the value of the sourceuri property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link String }
60       *     
61       */
62      public String getSourceuri() {
63          return sourceuri;
64      }
65  
66      /**
67       * Sets the value of the sourceuri property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link String }
72       *     
73       */
74      public void setSourceuri(String value) {
75          this.sourceuri = value;
76      }
77  
78      public boolean isSetSourceuri() {
79          return (this.sourceuri!= null);
80      }
81  
82      /**
83       * Gets the value of the sourceaction property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      public String getSourceaction() {
91          return sourceaction;
92      }
93  
94      /**
95       * Sets the value of the sourceaction property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     public void setSourceaction(String value) {
103         this.sourceaction = value;
104     }
105 
106     public boolean isSetSourceaction() {
107         return (this.sourceaction!= null);
108     }
109 
110     /**
111      * Gets the value of the destinationuri property.
112      * 
113      * @return
114      *     possible object is
115      *     {@link String }
116      *     
117      */
118     public String getDestinationuri() {
119         return destinationuri;
120     }
121 
122     /**
123      * Sets the value of the destinationuri property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link String }
128      *     
129      */
130     public void setDestinationuri(String value) {
131         this.destinationuri = value;
132     }
133 
134     public boolean isSetDestinationuri() {
135         return (this.destinationuri!= null);
136     }
137 
138     /**
139      * Gets the value of the destinationaction property.
140      * 
141      * @return
142      *     possible object is
143      *     {@link String }
144      *     
145      */
146     public String getDestinationaction() {
147         return destinationaction;
148     }
149 
150     /**
151      * Sets the value of the destinationaction property.
152      * 
153      * @param value
154      *     allowed object is
155      *     {@link String }
156      *     
157      */
158     public void setDestinationaction(String value) {
159         this.destinationaction = value;
160     }
161 
162     public boolean isSetDestinationaction() {
163         return (this.destinationaction!= null);
164     }
165 
166 }