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
37
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "AndOrNot", propOrder = {
40 "flag",
41 "lhs",
42 "rhs"
43 })
44 public class AndOrNot
45 extends RuleBaseType
46 implements Serializable
47 {
48
49 private final static long serialVersionUID = 1L;
50 @XmlElement(required = true)
51 protected JoiningType flag;
52 @XmlElement(name = "LHS", required = true)
53 protected RuleBaseType lhs;
54 @XmlElement(name = "RHS", required = true)
55 protected RuleBaseType rhs;
56
57
58
59
60
61
62
63
64
65 public JoiningType getFlag() {
66 return flag;
67 }
68
69
70
71
72
73
74
75
76
77 public void setFlag(JoiningType value) {
78 this.flag = value;
79 }
80
81 public boolean isSetFlag() {
82 return (this.flag!= null);
83 }
84
85
86
87
88
89
90
91
92
93 public RuleBaseType getLHS() {
94 return lhs;
95 }
96
97
98
99
100
101
102
103
104
105 public void setLHS(RuleBaseType value) {
106 this.lhs = value;
107 }
108
109 public boolean isSetLHS() {
110 return (this.lhs!= null);
111 }
112
113
114
115
116
117
118
119
120
121 public RuleBaseType getRHS() {
122 return rhs;
123 }
124
125
126
127
128
129
130
131
132
133 public void setRHS(RuleBaseType value) {
134 this.rhs = value;
135 }
136
137 public boolean isSetRHS() {
138 return (this.rhs!= null);
139 }
140
141 }