public interface MessageContext
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBindingURI()
Returns the type of binding (SOAP 1.1, SOAP 1.2, HTTP, etc.) being
used (if any and known).
|
java.lang.String |
getInterfaceName()
Returns the name of the interface being invoked (if known).
|
Message |
getMessage()
Returns the message.
|
java.lang.String |
getOperationName()
Returns the name of the operation being invoked (if known).
|
java.lang.String |
getPortName()
Returns the name of the WSDL port being invoked (if known).
|
java.lang.Object |
getProperty(java.lang.String name)
Returns a property with the given name.
|
java.util.Set |
getPropertyNames()
Returns the names of all the properties of the context.
|
java.lang.String |
getServiceName()
Returns the name of the service being invoked (if known).
|
void |
setBindingURI(java.lang.String bindingURI)
Changes the type of binding (SOAP 1.1, SOAP 1.2, HTTP, etc.) being
used (if any).
|
void |
setInterfaceName(java.lang.String name)
Changes the name of the interface being invoked.
|
void |
setMessage(Message message)
Changes the message.
|
void |
setOperationName(java.lang.String name)
Changes the name of the operation being invoked.
|
void |
setPortName(java.lang.String name)
Changes the name of the WSDL port being invoked.
|
void |
setProperty(java.lang.String name,
java.lang.Object o)
Changes the property with the given name.
|
void |
setServiceName(java.lang.String name)
Changes the name of the service being invoked.
|
Message getMessage()
void setMessage(Message message)
message
- Message holding the message content.java.lang.String getServiceName()
void setServiceName(java.lang.String name)
name
- String representation of the service QName.java.lang.String getInterfaceName()
void setInterfaceName(java.lang.String name)
name
- String representation of the interface QName.java.lang.String getOperationName()
void setOperationName(java.lang.String name)
name
- String name of the operation.java.lang.String getPortName()
void setPortName(java.lang.String name)
name
- String name of the WSDL port.java.lang.String getBindingURI()
void setBindingURI(java.lang.String bindingURI)
bindingURI
- String URI of the type of binding, null if not specified.java.util.Set getPropertyNames()
java.lang.Object getProperty(java.lang.String name)
name
- Name of the property being accessed.void setProperty(java.lang.String name, java.lang.Object o)
name
- Name of the property being changed.o
- Property value.?? 2022 Perforce Software, All rights reserved
This software is the confidential and proprietary information of Perforce, Inc. and is subject to copyright protection under laws of the United States of America and other countries. The use of this software should be in accordance with the license agreement terms you entered into with Perforce, Inc.