KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

69     public void setAny(Object JavaDoc value) {
70         this.any = value;
71     }
72
73 }
74
Popular Tags