package org.talend.esb.mep.requestcallback.impl.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import org.apache.cxf.wsdl.TExtensibilityElementImpl; @XmlAccessorType(XmlAccessType.FIELD) @XmlRootElement(name = "portType", namespace = "http://schemas.xmlsoap.org/ws/2003/05/partner-link/") public class PLPortType extends TExtensibilityElementImpl { @XmlAttribute(name = "name", required = true) @XmlSchemaType(name = "anyURI") private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return name; } }