View Javadoc
1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements. See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership. The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License. You may obtain a copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied. See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  //
20  // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
21  // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
22  // Any modifications to this file will be lost upon recompilation of the source schema.
23  // Generated on: 2014.03.27 at 03:31:20 PM GMT
24  //
25  
26  
27  package org.apache.wss4j.binding.wss10;
28  
29  import jakarta.xml.bind.annotation.XmlAccessType;
30  import jakarta.xml.bind.annotation.XmlAccessorType;
31  import jakarta.xml.bind.annotation.XmlAttribute;
32  import jakarta.xml.bind.annotation.XmlSchemaType;
33  import jakarta.xml.bind.annotation.XmlSeeAlso;
34  import jakarta.xml.bind.annotation.XmlType;
35  
36  
37  /**
38   * This type is used for elements containing stringified binary data.
39   *
40   * <p>Java class for EncodedString complex type.
41   *
42   * <p>The following schema fragment specifies the expected content contained within this class.
43   *
44   * <pre>
45   * &lt;complexType name="EncodedString">
46   *   &lt;simpleContent>
47   *     &lt;extension base="&lt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">
48   *       &lt;attribute name="EncodingType" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
49   *       &lt;anyAttribute processContents='lax' namespace='##other'/>
50   *     &lt;/extension>
51   *   &lt;/simpleContent>
52   * &lt;/complexType>
53   * </pre>
54   *
55   *
56   */
57  @XmlAccessorType(XmlAccessType.FIELD)
58  @XmlType(name = "EncodedString")
59  @XmlSeeAlso({
60      BinarySecurityTokenType.class,
61      KeyIdentifierType.class
62  })
63  public class EncodedString
64      extends AttributedString
65  {
66  
67      @XmlAttribute(name = "EncodingType")
68      @XmlSchemaType(name = "anyURI")
69      private String encodingType;
70  
71      /**
72       * Gets the value of the encodingType property.
73       *
74       * @return
75       *     possible object is
76       *     {@link String }
77       *
78       */
79      public String getEncodingType() {
80          return encodingType;
81      }
82  
83      /**
84       * Sets the value of the encodingType property.
85       *
86       * @param value
87       *     allowed object is
88       *     {@link String }
89       *
90       */
91      public void setEncodingType(String value) {
92          this.encodingType = value;
93      }
94  
95  }