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

com.sun.xml.ws.security.trust.impl.bindings.RenewingType Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010, 2022 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2006.02.24 at 05:55:09 PM PST
//


package com.sun.xml.ws.security.trust.impl.bindings;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.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