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

com.sugarcrm.ws.soap.TPart Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version

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;
import javax.xml.namespace.QName;


/**
 * 

Java class for tPart complex type. * *

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

 * <complexType name="tPart">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibleAttributesDocumented">
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
 *       <attribute name="element" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tPart", namespace = "http://schemas.xmlsoap.org/wsdl/") public class TPart extends TExtensibleAttributesDocumented { @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected java.lang.String name; @XmlAttribute protected QName element; @XmlAttribute protected QName type; /** * 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; } /** * Gets the value of the element property. * * @return * possible object is * {@link QName } * */ public QName getElement() { return element; } /** * Sets the value of the element property. * * @param value * allowed object is * {@link QName } * */ public void setElement(QName value) { this.element = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link QName } * */ public QName getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link QName } * */ public void setType(QName value) { this.type = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy