KickJava   Java API By Example, From Geeks To Geeks.

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


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.trust.impl.bindings;
10
11 import java.util.HashMap JavaDoc;
12 import java.util.Map JavaDoc;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAnyAttribute;
16 import javax.xml.bind.annotation.XmlAttribute;
17 import javax.xml.bind.annotation.XmlType;
18 import javax.xml.bind.annotation.XmlValue;
19 import javax.xml.namespace.QName JavaDoc;
20 import com.sun.xml.ws.security.trust.impl.bindings.BinarySecretType;
21
22
23 /**
24  * <p>Java class for BinarySecretType complex type.
25  *
26  * <p>The following schema fragment specifies the expected content contained within this class.
27  *
28  * <pre>
29  * &lt;complexType name="BinarySecretType">
30  * &lt;simpleContent>
31  * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>base64Binary">
32  * &lt;attribute name="Type" type="{http://schemas.xmlsoap.org/ws/2005/02/trust}BinarySecretTypeOpenEnum" />
33  * &lt;/extension>
34  * &lt;/simpleContent>
35  * &lt;/complexType>
36  * </pre>
37  *
38  *
39  */

40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "BinarySecretType", propOrder = {
42     "value"
43 })
44 public class BinarySecretType {
45
46     @XmlValue
47     protected byte[] value;
48     @XmlAttribute(name = "Type")
49     protected String JavaDoc type;
50     @XmlAnyAttribute
51     private Map JavaDoc<QName JavaDoc, String JavaDoc> otherAttributes = new HashMap JavaDoc<QName JavaDoc, String JavaDoc>();
52
53     /**
54      * Gets the value of the value property.
55      *
56      * @return
57      * possible object is
58      * byte[]
59      */

60     public byte[] getValue() {
61         return value;
62     }
63
64     /**
65      * Sets the value of the value property.
66      *
67      * @param value
68      * allowed object is
69      * byte[]
70      */

71     public void setValue(byte[] value) {
72         this.value = ((byte[]) value);
73     }
74
75     /**
76      * Gets the value of the type property.
77      *
78      * @return
79      * possible object is
80      * {@link String }
81      *
82      */

83     public String JavaDoc getType() {
84         return type;
85     }
86
87     /**
88      * Sets the value of the type property.
89      *
90      * @param value
91      * allowed object is
92      * {@link String }
93      *
94      */

95     public void setType(String JavaDoc value) {
96         this.type = value;
97     }
98
99     /**
100      * Gets a map that contains attributes that aren't bound to any typed property on this class.
101      *
102      * <p>
103      * the map is keyed by the name of the attribute and
104      * the value is the string value of the attribute.
105      *
106      * the map returned by this method is live, and you can add new attribute
107      * by updating the map directly. Because of this design, there's no setter.
108      *
109      *
110      * @return
111      * always non-null
112      */

113     public Map JavaDoc<QName JavaDoc, String JavaDoc> getOtherAttributes() {
114         return otherAttributes;
115     }
116
117 }
118
Popular Tags