1
2 package org.miloss.fgsms.services.interfaces.policyconfiguration;
3
4 import java.io.Serializable;
5 import java.util.ArrayList;
6 import java.util.List;
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlType;
11 import org.miloss.fgsms.services.interfaces.common.NameValuePair;
12 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
13
14
15 /**
16 *
17 * get formatted html
18 *
19 *
20 * <p>Java class for GetPluginHtmlFormattedDisplayRequestMsgWrapper complex type.
21 *
22 * <p>The following schema fragment specifies the expected content contained within this class.
23 *
24 * <pre>
25 * <complexType name="GetPluginHtmlFormattedDisplayRequestMsgWrapper">
26 * <complexContent>
27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28 * <sequence>
29 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
30 * <element name="plugintype" type="{http://www.w3.org/2001/XMLSchema}string"/>
31 * <element name="classname" type="{http://www.w3.org/2001/XMLSchema}string"/>
32 * <element name="parameters" type="{urn:org:miloss:fgsms:services:interfaces:common}NameValuePair" maxOccurs="unbounded"/>
33 * </sequence>
34 * </restriction>
35 * </complexContent>
36 * </complexType>
37 * </pre>
38 *
39 *
40 */
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "GetPluginHtmlFormattedDisplayRequestMsgWrapper", propOrder = {
43 "classification",
44 "plugintype",
45 "classname",
46 "parameters"
47 })
48 public class GetPluginHtmlFormattedDisplayRequestMsgWrapper
49 implements Serializable
50 {
51
52 private final static long serialVersionUID = 1L;
53 @XmlElement(required = true, nillable = true)
54 protected SecurityWrapper classification;
55 @XmlElement(required = true, nillable = true)
56 protected String plugintype;
57 @XmlElement(required = true, nillable = true)
58 protected String classname;
59 @XmlElement(required = true, nillable = true)
60 protected List<NameValuePair> parameters;
61
62 /**
63 * Gets the value of the classification property.
64 *
65 * @return
66 * possible object is
67 * {@link SecurityWrapper }
68 *
69 */
70 public SecurityWrapper getClassification() {
71 return classification;
72 }
73
74 /**
75 * Sets the value of the classification property.
76 *
77 * @param value
78 * allowed object is
79 * {@link SecurityWrapper }
80 *
81 */
82 public void setClassification(SecurityWrapper value) {
83 this.classification = value;
84 }
85
86 public boolean isSetClassification() {
87 return (this.classification!= null);
88 }
89
90 /**
91 * Gets the value of the plugintype property.
92 *
93 * @return
94 * possible object is
95 * {@link String }
96 *
97 */
98 public String getPlugintype() {
99 return plugintype;
100 }
101
102 /**
103 * Sets the value of the plugintype property.
104 *
105 * @param value
106 * allowed object is
107 * {@link String }
108 *
109 */
110 public void setPlugintype(String value) {
111 this.plugintype = value;
112 }
113
114 public boolean isSetPlugintype() {
115 return (this.plugintype!= null);
116 }
117
118 /**
119 * Gets the value of the classname property.
120 *
121 * @return
122 * possible object is
123 * {@link String }
124 *
125 */
126 public String getClassname() {
127 return classname;
128 }
129
130 /**
131 * Sets the value of the classname property.
132 *
133 * @param value
134 * allowed object is
135 * {@link String }
136 *
137 */
138 public void setClassname(String value) {
139 this.classname = value;
140 }
141
142 public boolean isSetClassname() {
143 return (this.classname!= null);
144 }
145
146 /**
147 * Gets the value of the parameters property.
148 *
149 * <p>
150 * This accessor method returns a reference to the live list,
151 * not a snapshot. Therefore any modification you make to the
152 * returned list will be present inside the JAXB object.
153 * This is why there is not a <CODE>set</CODE> method for the parameters property.
154 *
155 * <p>
156 * For example, to add a new item, do as follows:
157 * <pre>
158 * getParameters().add(newItem);
159 * </pre>
160 *
161 *
162 * <p>
163 * Objects of the following type(s) are allowed in the list
164 * {@link NameValuePair }
165 *
166 *
167 */
168 public List<NameValuePair> getParameters() {
169 if (parameters == null) {
170 parameters = new ArrayList<NameValuePair>();
171 }
172 return this.parameters;
173 }
174
175 public boolean isSetParameters() {
176 return ((this.parameters!= null)&&(!this.parameters.isEmpty()));
177 }
178
179 public void unsetParameters() {
180 this.parameters = null;
181 }
182
183 }