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 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "PropertyPair", propOrder = {
33 "propertyname",
34 "propertyvalue"
35 })
36 public class PropertyPair
37 implements Serializable
38 {
39
40 private final static long serialVersionUID = 1L;
41 @XmlElement(required = true)
42 protected String propertyname;
43 @XmlElement(required = true)
44 protected String propertyvalue;
45
46
47
48
49
50
51
52
53
54 public String getPropertyname() {
55 return propertyname;
56 }
57
58
59
60
61
62
63
64
65
66 public void setPropertyname(String value) {
67 this.propertyname = value;
68 }
69
70 public boolean isSetPropertyname() {
71 return (this.propertyname!= null);
72 }
73
74
75
76
77
78
79
80
81
82 public String getPropertyvalue() {
83 return propertyvalue;
84 }
85
86
87
88
89
90
91
92
93
94 public void setPropertyvalue(String value) {
95 this.propertyvalue = value;
96 }
97
98 public boolean isSetPropertyvalue() {
99 return (this.propertyvalue!= null);
100 }
101
102 }