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
13
14
15
16
17
18
19
20
21
22
23
24
25
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 }