// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.08.03 at 06:49:55 AM PDT // package org.ebayopensource.turmeric.runtime.codegen.common; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Type definition for specifying service details * * <p>Java class for ServiceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ServiceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="service-name" type="{http://www.w3.org/2001/XMLSchema}QName"/> * <element name="service-location" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="wsdl-location" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="pkg-ns-map-list" type="{http://www.ebayopensource.org/turmeric/runtime/codegen/common}PkgToNSMappingList" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceType", propOrder = { "serviceName", "serviceLocation", "wsdlLocation", "pkgNsMapList" }) public class ServiceType { @XmlElement(name = "service-name", required = true) protected QName serviceName; @XmlElement(name = "service-location", required = true) @XmlSchemaType(name = "anyURI") protected String serviceLocation; @XmlElement(name = "wsdl-location", required = true) @XmlSchemaType(name = "anyURI") protected String wsdlLocation; @XmlElement(name = "pkg-ns-map-list") protected PkgToNSMappingList pkgNsMapList; /** * Gets the value of the serviceName property. * * @return * possible object is * {@link QName } * */ public QName getServiceName() { return serviceName; } /** * Sets the value of the serviceName property. * * @param value * allowed object is * {@link QName } * */ public void setServiceName(QName value) { this.serviceName = value; } /** * Gets the value of the serviceLocation property. * * @return * possible object is * {@link String } * */ public String getServiceLocation() { return serviceLocation; } /** * Sets the value of the serviceLocation property. * * @param value * allowed object is * {@link String } * */ public void setServiceLocation(String value) { this.serviceLocation = value; } /** * Gets the value of the wsdlLocation property. * * @return * possible object is * {@link String } * */ public String getWsdlLocation() { return wsdlLocation; } /** * Sets the value of the wsdlLocation property. * * @param value * allowed object is * {@link String } * */ public void setWsdlLocation(String value) { this.wsdlLocation = value; } /** * Gets the value of the pkgNsMapList property. * * @return * possible object is * {@link PkgToNSMappingList } * */ public PkgToNSMappingList getPkgNsMapList() { return pkgNsMapList; } /** * Sets the value of the pkgNsMapList property. * * @param value * allowed object is * {@link PkgToNSMappingList } * */ public void setPkgNsMapList(PkgToNSMappingList value) { this.pkgNsMapList = value; } }