com.sugarcrm.ws.soap.TImport 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;
/**
* Java class for tImport complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tImport">
* <complexContent>
* <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibleAttributesDocumented">
* <attribute name="namespace" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="location" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <anyAttribute processContents='lax' namespace='##other'/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tImport", namespace = "http://schemas.xmlsoap.org/wsdl/")
public class TImport
extends TExtensibleAttributesDocumented
{
@XmlAttribute(required = true)
@XmlSchemaType(name = "anyURI")
protected java.lang.String namespace;
@XmlAttribute(required = true)
@XmlSchemaType(name = "anyURI")
protected java.lang.String location;
/**
* Gets the value of the namespace property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getNamespace() {
return namespace;
}
/**
* Sets the value of the namespace property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setNamespace(java.lang.String value) {
this.namespace = value;
}
/**
* Gets the value of the location property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getLocation() {
return location;
}
/**
* Sets the value of the location property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setLocation(java.lang.String value) {
this.location = value;
}
}