package org.cagrid.gme.wsrf.stubs; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.cagrid.gme.model.XMLSchemaNamespace; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="targetNamespace"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{gme://gme.cagrid.org/2.0/GlobalModelExchange/domain}XMLSchemaNamespace"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "targetNamespace" }) @XmlRootElement(name = "GetImportedXMLSchemaNamespacesRequest") public class GetImportedXMLSchemaNamespacesRequest implements Serializable { @XmlElement(required = true) protected TargetNamespace targetNamespace; /** * Gets the value of the targetNamespace property. * * @return * possible object is * {@link org.cagrid.gme.wsrf.stubs.GetImportedXMLSchemaNamespacesRequest.TargetNamespace } * */ public TargetNamespace getTargetNamespace() { return targetNamespace; } /** * Sets the value of the targetNamespace property. * * @param value * allowed object is * {@link org.cagrid.gme.wsrf.stubs.GetImportedXMLSchemaNamespacesRequest.TargetNamespace } * */ public void setTargetNamespace(TargetNamespace value) { this.targetNamespace = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{gme://gme.cagrid.org/2.0/GlobalModelExchange/domain}XMLSchemaNamespace"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "xmlSchemaNamespace" }) public static class TargetNamespace implements Serializable { @XmlElement(name = "XMLSchemaNamespace", namespace = "gme://gme.cagrid.org/2.0/GlobalModelExchange/domain", required = true) protected XMLSchemaNamespace xmlSchemaNamespace; /** * Gets the value of the xmlSchemaNamespace property. * * @return * possible object is * {@link org.cagrid.gme.model.XMLSchemaNamespace } * */ public XMLSchemaNamespace getXMLSchemaNamespace() { return xmlSchemaNamespace; } /** * Sets the value of the xmlSchemaNamespace property. * * @param value * allowed object is * {@link org.cagrid.gme.model.XMLSchemaNamespace } * */ public void setXMLSchemaNamespace(XMLSchemaNamespace value) { this.xmlSchemaNamespace = value; } } }