KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

66     public void setAny(Object JavaDoc value) {
67         this.any = value;
68     }
69
70 }
71
Popular Tags