Package org.apache.wsil.extension.uddi
Interface ServiceDescription
-
- All Superinterfaces:
ExtensionElement
,java.io.Serializable
,WSILElement
- All Known Implementing Classes:
ServiceDescriptionImpl
public interface ServiceDescription extends ExtensionElement
UDDI extension element for WSIL document - serviceDescription element.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DISCOVERY_URL_ELEM_NAME
DiscoveryURL Element name.static QName
DISCOVERY_URL_QNAME
DiscoveryURL QName.static QName
DISCOVERY_URL_QNAME_V2
DiscoveryURL QName for UDDI V2.static java.lang.String
ELEM_NAME
Element name.static QName
QNAME
QName.static QName
QNAME_V2
QName for UDDI V2.static java.lang.String
SERVICE_KEY_ELEM_NAME
ServiceKey Element name.static QName
SERVICE_KEY_QNAME
ServiceKey QName.static QName
SERVICE_KEY_QNAME_V2
ServiceKey QName for UDDI V2.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.uddi4j.util.DiscoveryURL
createDiscoveryURL()
Create discoveryURLorg.uddi4j.util.ServiceKey
createServiceKey()
Create service key.org.uddi4j.util.DiscoveryURL
getDiscoveryURL()
Get discoveryURLjava.lang.String
getLocation()
Get location for this ServiceDescription.org.uddi4j.util.ServiceKey
getServiceKey()
Get service key.void
setDiscoveryURL(org.uddi4j.util.DiscoveryURL discoveryURL)
Set discoveryURLvoid
setLocation(java.lang.String location)
Set locationvoid
setServiceKey(org.uddi4j.util.ServiceKey serviceKey)
Set service key.-
Methods inherited from interface org.apache.wsil.extension.ExtensionElement
getQName
-
Methods inherited from interface org.apache.wsil.WSILElement
toXMLString
-
-
-
-
Field Detail
-
ELEM_NAME
static final java.lang.String ELEM_NAME
Element name.- See Also:
- Constant Field Values
-
SERVICE_KEY_ELEM_NAME
static final java.lang.String SERVICE_KEY_ELEM_NAME
ServiceKey Element name.- See Also:
- Constant Field Values
-
DISCOVERY_URL_ELEM_NAME
static final java.lang.String DISCOVERY_URL_ELEM_NAME
DiscoveryURL Element name.- See Also:
- Constant Field Values
-
QNAME
static final QName QNAME
QName.
-
QNAME_V2
static final QName QNAME_V2
QName for UDDI V2.
-
SERVICE_KEY_QNAME
static final QName SERVICE_KEY_QNAME
ServiceKey QName.
-
SERVICE_KEY_QNAME_V2
static final QName SERVICE_KEY_QNAME_V2
ServiceKey QName for UDDI V2.
-
DISCOVERY_URL_QNAME
static final QName DISCOVERY_URL_QNAME
DiscoveryURL QName.
-
DISCOVERY_URL_QNAME_V2
static final QName DISCOVERY_URL_QNAME_V2
DiscoveryURL QName for UDDI V2.
-
-
Method Detail
-
createServiceKey
org.uddi4j.util.ServiceKey createServiceKey()
Create service key.
-
setServiceKey
void setServiceKey(org.uddi4j.util.ServiceKey serviceKey)
Set service key.
-
getServiceKey
org.uddi4j.util.ServiceKey getServiceKey()
Get service key.
-
createDiscoveryURL
org.uddi4j.util.DiscoveryURL createDiscoveryURL()
Create discoveryURL
-
setDiscoveryURL
void setDiscoveryURL(org.uddi4j.util.DiscoveryURL discoveryURL)
Set discoveryURL
-
getDiscoveryURL
org.uddi4j.util.DiscoveryURL getDiscoveryURL()
Get discoveryURL
-
setLocation
void setLocation(java.lang.String location)
Set location
-
getLocation
java.lang.String getLocation()
Get location for this ServiceDescription.
-
-