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.XmlElement;
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
30
31
32
33
34
35
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "SLA", propOrder = {
38 "guid",
39 "action",
40 "rule"
41 })
42 public class SLA
43 implements Serializable
44 {
45
46 private final static long serialVersionUID = 1L;
47 @XmlElement(required = true, nillable = true)
48 protected String guid;
49 @XmlElement(name = "Action", required = true, nillable = true)
50 protected ArrayOfSLAActionBaseType action;
51 @XmlElement(name = "Rule", required = true, nillable = true)
52 protected RuleBaseType rule;
53
54
55
56
57
58
59
60
61
62 public String getGuid() {
63 return guid;
64 }
65
66
67
68
69
70
71
72
73
74 public void setGuid(String value) {
75 this.guid = value;
76 }
77
78 public boolean isSetGuid() {
79 return (this.guid!= null);
80 }
81
82
83
84
85
86
87
88
89
90 public ArrayOfSLAActionBaseType getAction() {
91 return action;
92 }
93
94
95
96
97
98
99
100
101
102 public void setAction(ArrayOfSLAActionBaseType value) {
103 this.action = value;
104 }
105
106 public boolean isSetAction() {
107 return (this.action!= null);
108 }
109
110
111
112
113
114
115
116
117
118 public RuleBaseType getRule() {
119 return rule;
120 }
121
122
123
124
125
126
127
128
129
130 public void setRule(RuleBaseType value) {
131 this.rule = value;
132 }
133
134 public boolean isSetRule() {
135 return (this.rule!= null);
136 }
137
138 }