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.XmlRootElement;
9   import javax.xml.bind.annotation.XmlType;
10  
11  
12  /**
13   * <p>Java class for anonymous complex type.
14   * 
15   * <p>The following schema fragment specifies the expected content contained within this class.
16   * 
17   * <pre>
18   * &lt;complexType>
19   *   &lt;complexContent>
20   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21   *       &lt;sequence>
22   *         &lt;element name="GetServiceDependenciesResponse" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}GetServiceDependenciesResponseMsg"/>
23   *       &lt;/sequence>
24   *     &lt;/restriction>
25   *   &lt;/complexContent>
26   * &lt;/complexType>
27   * </pre>
28   * 
29   * 
30   */
31  @XmlAccessorType(XmlAccessType.FIELD)
32  @XmlType(name = "", propOrder = {
33      "getServiceDependenciesResponse"
34  })
35  @XmlRootElement(name = "GetServiceDependenciesResponse")
36  public class GetServiceDependenciesResponse
37      implements Serializable
38  {
39  
40      private final static long serialVersionUID = 1L;
41      @XmlElement(name = "GetServiceDependenciesResponse", required = true)
42      protected GetServiceDependenciesResponseMsg getServiceDependenciesResponse;
43  
44      /**
45       * Gets the value of the getServiceDependenciesResponse property.
46       * 
47       * @return
48       *     possible object is
49       *     {@link GetServiceDependenciesResponseMsg }
50       *     
51       */
52      public GetServiceDependenciesResponseMsg getGetServiceDependenciesResponse() {
53          return getServiceDependenciesResponse;
54      }
55  
56      /**
57       * Sets the value of the getServiceDependenciesResponse property.
58       * 
59       * @param value
60       *     allowed object is
61       *     {@link GetServiceDependenciesResponseMsg }
62       *     
63       */
64      public void setGetServiceDependenciesResponse(GetServiceDependenciesResponseMsg value) {
65          this.getServiceDependenciesResponse = value;
66      }
67  
68      public boolean isSetGetServiceDependenciesResponse() {
69          return (this.getServiceDependenciesResponse!= null);
70      }
71  
72  }