KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > dsig > core > SignatureValueType


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.dsig.core;
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.XmlID;
15 import javax.xml.bind.annotation.XmlType;
16 import javax.xml.bind.annotation.XmlValue;
17 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
18 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19 import com.sun.xml.dsig.core.SignatureValueType;
20
21
22 /**
23  * <p>Java class for SignatureValueType complex type.
24  *
25  * <p>The following schema fragment specifies the expected content contained within this class.
26  *
27  * <pre>
28  * &lt;complexType name="SignatureValueType">
29  * &lt;simpleContent>
30  * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>base64Binary">
31  * &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
32  * &lt;/extension>
33  * &lt;/simpleContent>
34  * &lt;/complexType>
35  * </pre>
36  *
37  *
38  */

39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "SignatureValueType", propOrder = {
41     "value"
42 })
43 public class SignatureValueType {
44
45     @XmlValue
46     protected byte[] value;
47     @XmlAttribute(name = "Id")
48     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
49     @XmlID
50     protected String JavaDoc id;
51
52     /**
53      * Gets the value of the value property.
54      *
55      * @return
56      * possible object is
57      * byte[]
58      */

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

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

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

94     public void setId(String JavaDoc value) {
95         this.id = value;
96     }
97
98 }
99
Popular Tags