
org.xmlsoap.schemas.wsdl.soap.TBinding Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.01.02 at 02:32:26 PM PST
//
package org.xmlsoap.schemas.wsdl.soap;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.xmlsoap.schemas.wsdl.TExtensibilityElement;
/**
* Java class for tBinding complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tBinding">
* <complexContent>
* <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
* <attribute name="transport" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="style" type="{http://schemas.xmlsoap.org/wsdl/soap/}tStyleChoice" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tBinding")
public class TBinding
extends TExtensibilityElement
{
@XmlAttribute(name = "transport", required = true)
@XmlSchemaType(name = "anyURI")
protected String transport;
@XmlAttribute(name = "style")
protected TStyleChoice style;
/**
* Gets the value of the transport property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransport() {
return transport;
}
/**
* Sets the value of the transport property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransport(String value) {
this.transport = value;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link TStyleChoice }
*
*/
public TStyleChoice getStyle() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link TStyleChoice }
*
*/
public void setStyle(TStyleChoice value) {
this.style = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy