com.sugarcrm.ws.soap.TBindingOperationFault Maven / Gradle / Ivy
package com.sugarcrm.ws.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 javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for tBindingOperationFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tBindingOperationFault">
* <complexContent>
* <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibleDocumented">
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tBindingOperationFault", namespace = "http://schemas.xmlsoap.org/wsdl/")
public class TBindingOperationFault
extends TExtensibleDocumented
{
@XmlAttribute(name = "name", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected java.lang.String name;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setName(java.lang.String value) {
this.name = value;
}
}