KickJava   Java API By Example, From Geeks To Geeks.

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


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 javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAnyElement;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlType;
16 import com.sun.xml.ws.security.trust.impl.bindings.UseKeyType;
17 import org.w3c.dom.Element JavaDoc;
18
19
20 /**
21  * <p>Java class for UseKeyType complex type.
22  *
23  * <p>The following schema fragment specifies the expected content contained within this class.
24  *
25  * <pre>
26  * &lt;complexType name="UseKeyType">
27  * &lt;complexContent>
28  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29  * &lt;sequence>
30  * &lt;any/>
31  * &lt;/sequence>
32  * &lt;attribute name="Sig" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
33  * &lt;/restriction>
34  * &lt;/complexContent>
35  * &lt;/complexType>
36  * </pre>
37  *
38  *
39  */

40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "UseKeyType", propOrder = {
42     "any"
43 })
44 public class UseKeyType {
45
46     @XmlAnyElement(lax = true)
47     protected Object JavaDoc any;
48     @XmlAttribute(name = "Sig")
49     protected String JavaDoc sig;
50
51     /**
52      * Gets the value of the any property.
53      *
54      * @return
55      * possible object is
56      * {@link Element }
57      * {@link Object }
58      *
59      */

60     public Object JavaDoc getAny() {
61         return any;
62     }
63
64     /**
65      * Sets the value of the any property.
66      *
67      * @param value
68      * allowed object is
69      * {@link Element }
70      * {@link Object }
71      *
72      */

73     public void setAny(Object JavaDoc value) {
74         this.any = value;
75     }
76
77     /**
78      * Gets the value of the sig property.
79      *
80      * @return
81      * possible object is
82      * {@link String }
83      *
84      */

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

97     public void setSig(String JavaDoc value) {
98         this.sig = value;
99     }
100
101 }
102
Popular Tags