View Javadoc
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   *                 Class that defines how a user identity is obtained from an XML web service message
14   *             
15   * 
16   * <p>Java class for UserIdentity complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="UserIdentity">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="HttpHeaderName" type="{http://www.w3.org/2001/XMLSchema}string"/>
26   *         &lt;element name="Namespaces" type="{urn:org:miloss:fgsms:services:interfaces:policyConfiguration}ArrayOfXMLNamespacePrefixies"/>
27   *         &lt;element name="UseHttpCredential" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
28   *         &lt;element name="UseHttpHeader" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
29   *         &lt;element name="XPaths" type="{urn:org:miloss:fgsms:services:interfaces:policyConfiguration}ArrayOfXPathExpressionType"/>
30   *       &lt;/sequence>
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "UserIdentity", propOrder = {
40      "httpHeaderName",
41      "namespaces",
42      "useHttpCredential",
43      "useHttpHeader",
44      "xPaths"
45  })
46  public class UserIdentity
47      implements Serializable
48  {
49  
50      private final static long serialVersionUID = 1L;
51      @XmlElement(name = "HttpHeaderName", required = true, nillable = true)
52      protected String httpHeaderName;
53      @XmlElement(name = "Namespaces", required = true, nillable = true)
54      protected ArrayOfXMLNamespacePrefixies namespaces;
55      @XmlElement(name = "UseHttpCredential")
56      protected Boolean useHttpCredential;
57      @XmlElement(name = "UseHttpHeader")
58      protected Boolean useHttpHeader;
59      @XmlElement(name = "XPaths", required = true, nillable = true)
60      protected ArrayOfXPathExpressionType xPaths;
61  
62      /**
63       * Gets the value of the httpHeaderName property.
64       * 
65       * @return
66       *     possible object is
67       *     {@link String }
68       *     
69       */
70      public String getHttpHeaderName() {
71          return httpHeaderName;
72      }
73  
74      /**
75       * Sets the value of the httpHeaderName property.
76       * 
77       * @param value
78       *     allowed object is
79       *     {@link String }
80       *     
81       */
82      public void setHttpHeaderName(String value) {
83          this.httpHeaderName = value;
84      }
85  
86      public boolean isSetHttpHeaderName() {
87          return (this.httpHeaderName!= null);
88      }
89  
90      /**
91       * Gets the value of the namespaces property.
92       * 
93       * @return
94       *     possible object is
95       *     {@link ArrayOfXMLNamespacePrefixies }
96       *     
97       */
98      public ArrayOfXMLNamespacePrefixies getNamespaces() {
99          return namespaces;
100     }
101 
102     /**
103      * Sets the value of the namespaces property.
104      * 
105      * @param value
106      *     allowed object is
107      *     {@link ArrayOfXMLNamespacePrefixies }
108      *     
109      */
110     public void setNamespaces(ArrayOfXMLNamespacePrefixies value) {
111         this.namespaces = value;
112     }
113 
114     public boolean isSetNamespaces() {
115         return (this.namespaces!= null);
116     }
117 
118     /**
119      * Gets the value of the useHttpCredential property.
120      * 
121      * @return
122      *     possible object is
123      *     {@link Boolean }
124      *     
125      */
126     public Boolean isUseHttpCredential() {
127         return useHttpCredential;
128     }
129 
130     /**
131      * Sets the value of the useHttpCredential property.
132      * 
133      * @param value
134      *     allowed object is
135      *     {@link Boolean }
136      *     
137      */
138     public void setUseHttpCredential(Boolean value) {
139         this.useHttpCredential = value;
140     }
141 
142     public boolean isSetUseHttpCredential() {
143         return (this.useHttpCredential!= null);
144     }
145 
146     /**
147      * Gets the value of the useHttpHeader property.
148      * 
149      * @return
150      *     possible object is
151      *     {@link Boolean }
152      *     
153      */
154     public Boolean isUseHttpHeader() {
155         return useHttpHeader;
156     }
157 
158     /**
159      * Sets the value of the useHttpHeader property.
160      * 
161      * @param value
162      *     allowed object is
163      *     {@link Boolean }
164      *     
165      */
166     public void setUseHttpHeader(Boolean value) {
167         this.useHttpHeader = value;
168     }
169 
170     public boolean isSetUseHttpHeader() {
171         return (this.useHttpHeader!= null);
172     }
173 
174     /**
175      * Gets the value of the xPaths property.
176      * 
177      * @return
178      *     possible object is
179      *     {@link ArrayOfXPathExpressionType }
180      *     
181      */
182     public ArrayOfXPathExpressionType getXPaths() {
183         return xPaths;
184     }
185 
186     /**
187      * Sets the value of the xPaths property.
188      * 
189      * @param value
190      *     allowed object is
191      *     {@link ArrayOfXPathExpressionType }
192      *     
193      */
194     public void setXPaths(ArrayOfXPathExpressionType value) {
195         this.xPaths = value;
196     }
197 
198     public boolean isSetXPaths() {
199         return (this.xPaths!= null);
200     }
201 
202 }