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

org.apache.cxf.transport.jms.wsdl.JndiInitialContextFactoryType Maven / Gradle / Ivy

There is a newer version: 2.7.18
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: 2012.10.05 at 02:38:06 PM EDT 
//


package org.apache.cxf.transport.jms.wsdl;

import javax.wsdl.extensions.ExtensibilityElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.namespace.QName;


/**
 * 

Java class for jndiInitialContextFactoryType complex type. * *

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

 * <complexType name="jndiInitialContextFactoryType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "jndiInitialContextFactoryType", propOrder = { "value" }) public class JndiInitialContextFactoryType implements ExtensibilityElement { @XmlValue protected String value; @XmlTransient protected QName elementType; @XmlAttribute(namespace = "http://schemas.xmlsoap.org/wsdl/") protected Boolean required; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } public QName getElementType() { return (elementType); } public void setElementType(QName type) { this.elementType = type; } public Boolean getRequired() { return (required == null ? false : required); } public void setRequired(Boolean required) { this.required = required; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy