View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.policyconfiguration;
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.XmlRootElement;
8   import javax.xml.bind.annotation.XmlType;
9   
10  
11  /**
12   * <p>Java class for StatusServicePolicy complex type.
13   * 
14   * <p>The following schema fragment specifies the expected content contained within this class.
15   * 
16   * <pre>
17   * &lt;complexType name="StatusServicePolicy">
18   *   &lt;complexContent>
19   *     &lt;extension base="{urn:org:miloss:fgsms:services:interfaces:policyConfiguration}ServicePolicy">
20   *       &lt;sequence>
21   *       &lt;/sequence>
22   *     &lt;/extension>
23   *   &lt;/complexContent>
24   * &lt;/complexType>
25   * </pre>
26   * 
27   * 
28   */
29  @XmlAccessorType(XmlAccessType.FIELD)
30  @XmlType(name = "StatusServicePolicy")
31  @XmlRootElement
32  public class StatusServicePolicy
33      extends ServicePolicy
34      implements Serializable
35  {
36  
37      private final static long serialVersionUID = 1L;
38  
39  }