KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > ws > security > impl > bindings > KeyIdentifierType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.ws.security.impl.bindings;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlType;
15 import com.sun.xml.ws.security.impl.bindings.EncodedString;
16 import com.sun.xml.ws.security.impl.bindings.KeyIdentifierType;
17
18
19 /**
20  * A security token key identifier
21  *
22  * <p>Java class for KeyIdentifierType complex type.
23  *
24  * <p>The following schema fragment specifies the expected content contained within this class.
25  *
26  * <pre>
27  * &lt;complexType name="KeyIdentifierType">
28  * &lt;simpleContent>
29  * &lt;extension base="&lt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>EncodedString">
30  * &lt;attribute name="ValueType" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
31  * &lt;/extension>
32  * &lt;/simpleContent>
33  * &lt;/complexType>
34  * </pre>
35  *
36  *
37  */

38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "KeyIdentifierType")
40 public class KeyIdentifierType
41     extends EncodedString
42 {
43
44     @XmlAttribute(name = "ValueType")
45     protected String JavaDoc valueType;
46
47     /**
48      * Gets the value of the valueType property.
49      *
50      * @return
51      * possible object is
52      * {@link String }
53      *
54      */

55     public String JavaDoc getValueType() {
56         return valueType;
57     }
58
59     /**
60      * Sets the value of the valueType property.
61      *
62      * @param value
63      * allowed object is
64      * {@link String }
65      *
66      */

67     public void setValueType(String JavaDoc value) {
68         this.valueType = value;
69     }
70
71 }
72
Popular Tags