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 dependencies complex type.
13   * 
14   * <p>The following schema fragment specifies the expected content contained within this class.
15   * 
16   * <pre>
17   * &lt;complexType name="dependencies">
18   *   &lt;complexContent>
19   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20   *       &lt;sequence>
21   *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
22   *         &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
23   *       &lt;/sequence>
24   *     &lt;/restriction>
25   *   &lt;/complexContent>
26   * &lt;/complexType>
27   * </pre>
28   * 
29   * 
30   */
31  @XmlAccessorType(XmlAccessType.FIELD)
32  @XmlType(name = "dependencies", propOrder = {
33      "url",
34      "action"
35  })
36  public class Dependencies
37      implements Serializable
38  {
39  
40      private final static long serialVersionUID = 1L;
41      @XmlElement(required = true)
42      protected String url;
43      @XmlElement(required = true)
44      protected String action;
45  
46      /**
47       * Gets the value of the url property.
48       * 
49       * @return
50       *     possible object is
51       *     {@link String }
52       *     
53       */
54      public String getUrl() {
55          return url;
56      }
57  
58      /**
59       * Sets the value of the url property.
60       * 
61       * @param value
62       *     allowed object is
63       *     {@link String }
64       *     
65       */
66      public void setUrl(String value) {
67          this.url = value;
68      }
69  
70      public boolean isSetUrl() {
71          return (this.url!= null);
72      }
73  
74      /**
75       * Gets the value of the action property.
76       * 
77       * @return
78       *     possible object is
79       *     {@link String }
80       *     
81       */
82      public String getAction() {
83          return action;
84      }
85  
86      /**
87       * Sets the value of the action property.
88       * 
89       * @param value
90       *     allowed object is
91       *     {@link String }
92       *     
93       */
94      public void setAction(String value) {
95          this.action = value;
96      }
97  
98      public boolean isSetAction() {
99          return (this.action!= null);
100     }
101 
102 }