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

org.apache.cxf.binding.corba.wsdl.PolicyType Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// 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: 2014.04.08 at 05:38:19 PM MDT 
//


package org.apache.cxf.binding.corba.wsdl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import org.apache.cxf.wsdl.TExtensibilityElementImpl;


/**
 * 
 *                 Artix IIOP tunnel policy specification.
 *             
 * 
 * 

Java class for policyType complex type. * *

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

 * <complexType name="policyType">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
 *       <attribute name="poaname" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="serviceid" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="persistent" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "policyType") public class PolicyType extends TExtensibilityElementImpl { @XmlAttribute(name = "poaname") protected String poaname; @XmlAttribute(name = "serviceid") protected String serviceid; @XmlAttribute(name = "persistent") protected Boolean persistent; /** * Gets the value of the poaname property. * * @return * possible object is * {@link String } * */ public String getPoaname() { return poaname; } /** * Sets the value of the poaname property. * * @param value * allowed object is * {@link String } * */ public void setPoaname(String value) { this.poaname = value; } public boolean isSetPoaname() { return (this.poaname!= null); } /** * Gets the value of the serviceid property. * * @return * possible object is * {@link String } * */ public String getServiceid() { return serviceid; } /** * Sets the value of the serviceid property. * * @param value * allowed object is * {@link String } * */ public void setServiceid(String value) { this.serviceid = value; } public boolean isSetServiceid() { return (this.serviceid!= null); } /** * Gets the value of the persistent property. * * @return * possible object is * {@link Boolean } * */ public boolean isPersistent() { if (persistent == null) { return false; } else { return persistent; } } /** * Sets the value of the persistent property. * * @param value * allowed object is * {@link Boolean } * */ public void setPersistent(boolean value) { this.persistent = value; } public boolean isSetPersistent() { return (this.persistent!= null); } public void unsetPersistent() { this.persistent = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy