All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.ws.security.sts.provider.model.RenewingType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.10.05 at 02:41:22 PM EDT 
//


package org.apache.cxf.ws.security.sts.provider.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for RenewingType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="RenewingType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="Allow" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="OK" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RenewingType") public class RenewingType { @XmlAttribute(name = "Allow") protected Boolean allow; @XmlAttribute(name = "OK") protected Boolean ok; /** * Gets the value of the allow property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAllow() { return allow; } /** * Sets the value of the allow property. * * @param value * allowed object is * {@link Boolean } * */ public void setAllow(Boolean value) { this.allow = value; } /** * Gets the value of the ok property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOK() { return ok; } /** * Sets the value of the ok property. * * @param value * allowed object is * {@link Boolean } * */ public void setOK(Boolean value) { this.ok = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy