Package com.ibm.wsdl
Class ServiceImpl
- java.lang.Object
-
- com.ibm.wsdl.AbstractWSDLElement
-
- com.ibm.wsdl.ServiceImpl
-
- All Implemented Interfaces:
java.io.Serializable
,AttributeExtensible
,ElementExtensible
,Service
,WSDLElement
public class ServiceImpl extends AbstractWSDLElement implements Service
This class represents a service, which groups related ports to provide some functionality.- Author:
- Paul Fremantle, Nirmal Mukhi, Matthew J. Duftler
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.xml.namespace.QName
name
protected java.util.List
nativeAttributeNames
protected java.util.Map
ports
static long
serialVersionUID
-
Fields inherited from class com.ibm.wsdl.AbstractWSDLElement
docEl, extElements, extensionAttributes
-
Fields inherited from interface javax.wsdl.extensions.AttributeExtensible
LIST_OF_QNAMES_TYPE, LIST_OF_STRINGS_TYPE, NO_DECLARED_TYPE, QNAME_TYPE, STRING_TYPE
-
-
Constructor Summary
Constructors Constructor Description ServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPort(Port port)
Add a port to this service.java.util.List
getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.Port
getPort(java.lang.String name)
Get the specified port.java.util.Map
getPorts()
Get all the ports defined here.javax.xml.namespace.QName
getQName()
Get the name of this service.Port
removePort(java.lang.String name)
Remove the specified port.void
setQName(javax.xml.namespace.QName name)
Set the name of this service.java.lang.String
toString()
-
Methods inherited from class com.ibm.wsdl.AbstractWSDLElement
addExtensibilityElement, getDocumentationElement, getExtensibilityElements, getExtensionAttribute, getExtensionAttributes, removeExtensibilityElement, setDocumentationElement, setExtensionAttribute
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.wsdl.extensions.AttributeExtensible
getExtensionAttribute, getExtensionAttributes, setExtensionAttribute
-
Methods inherited from interface javax.wsdl.extensions.ElementExtensible
addExtensibilityElement, getExtensibilityElements, removeExtensibilityElement
-
Methods inherited from interface javax.wsdl.WSDLElement
getDocumentationElement, setDocumentationElement
-
-
-
-
Field Detail
-
name
protected javax.xml.namespace.QName name
-
ports
protected java.util.Map ports
-
nativeAttributeNames
protected java.util.List nativeAttributeNames
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
setQName
public void setQName(javax.xml.namespace.QName name)
Set the name of this service.
-
getQName
public javax.xml.namespace.QName getQName()
Get the name of this service.
-
addPort
public void addPort(Port port)
Add a port to this service.
-
getPort
public Port getPort(java.lang.String name)
Get the specified port.
-
removePort
public Port removePort(java.lang.String name)
Remove the specified port.- Specified by:
removePort
in interfaceService
- Parameters:
name
- the name of the port to be removed.- Returns:
- the port which was removed
-
getPorts
public java.util.Map getPorts()
Get all the ports defined here.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classAbstractWSDLElement
-
getNativeAttributeNames
public java.util.List getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.- Specified by:
getNativeAttributeNames
in interfaceAttributeExtensible
- Returns:
- a List of Strings, one for each local attribute name
-
-