KickJava   Java API By Example, From Geeks To Geeks.

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


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

36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "RenewingType")
38 public class RenewingType {
39
40     @XmlAttribute(name = "Allow")
41     protected Boolean JavaDoc allow;
42     @XmlAttribute(name = "OK")
43     protected Boolean JavaDoc ok;
44
45     /**
46      * Gets the value of the allow property.
47      *
48      * @return
49      * possible object is
50      * {@link Boolean }
51      *
52      */

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

65     public void setAllow(Boolean JavaDoc value) {
66         this.allow = value;
67     }
68
69     /**
70      * Gets the value of the ok property.
71      *
72      * @return
73      * possible object is
74      * {@link Boolean }
75      *
76      */

77     public Boolean JavaDoc isOK() {
78         return ok;
79     }
80
81     /**
82      * Sets the value of the ok property.
83      *
84      * @param value
85      * allowed object is
86      * {@link Boolean }
87      *
88      */

89     public void setOK(Boolean JavaDoc value) {
90         this.ok = value;
91     }
92
93 }
94
Popular Tags