| java.lang.Object org.apache.axis2.addressing.EndpointReference
EndpointReference | public class EndpointReference implements Serializable(Code) | | Class EndpointReference
This class models the WS-A EndpointReferenceType. But this can be used without any WS-A handlers as well
Since the models for this in Submission and Final versions are different, lets make this to comply with
WS-A Final version. So any information found with WS-A submission will be "pumped" in to this model.
|
EndpointReference | public EndpointReference(String address)(Code) | | Parameters: address - |
addAttribute | public void addAttribute(String localName, OMNamespace ns, String value)(Code) | | Parameters: localName - Parameters: ns - Parameters: value - |
addAttribute | public void addAttribute(OMAttribute omAttribute)(Code) | | Parameters: omAttribute - |
addExtensibleElement | public void addExtensibleElement(OMElement extensibleElement)(Code) | | |
addMetaData | public void addMetaData(OMNode metaData)(Code) | | |
addReferenceParameter | public void addReferenceParameter(OMElement omElement)(Code) | | Parameters: omElement - |
addReferenceParameter | public void addReferenceParameter(QName qname, String value)(Code) | | Parameters: qname - Parameters: value - - the text of the OMElement. Remember that this is a convenient method for the user,which has limited capability. If you want more power use @See EndpointReference#addReferenceParameter(OMElement) |
getAllReferenceParameters | public Map getAllReferenceParameters()(Code) | | This will return a Map of reference parameters with QName as the key and an OMElement
as the value
- map of the reference parameters, where the key is the QName of the reference parameterand the value is an OMElement |
getLogCorrelationIDString | public String getLogCorrelationIDString()(Code) | | Get the ID associated with this object instance.
A string that can be output to a log file as an identifierfor this object instance. It is suitable for matching related logentries. |
hasAnonymousAddress | public boolean hasAnonymousAddress()(Code) | | hasAnonymousAddress
true if address is 'Anonymous URI' |
hasNoneAddress | public boolean hasNoneAddress()(Code) | | hasNoneAddress
true if the address is the 'None URI' from the final addressing spec. |
isEquivalent | public boolean isEquivalent(EndpointReference epr)(Code) | | Compares key parts of the state from the current instance of
this class with the specified instance to see if they are
equivalent.
This differs from the java.lang.Object.equals() method in
that the equals() method generally looks at both the
object identity (location in memory) and the object state
(data).
Parameters: epr - The object to compare with TRUE if this object is equivalent with the specified objectthat is, key fields matchFALSE, otherwise |
setAddress | public void setAddress(String address)(Code) | | Parameters: address - - xs:anyURI |
setExtensibleElements | public void setExtensibleElements(ArrayList extensibleElements)(Code) | | {any}
Parameters: extensibleElements - |
setName | public void setName(String name)(Code) | | Parameters: name - |
setReferenceParameters | public void setReferenceParameters(Map referenceParameters)(Code) | | Set a Map with QName as the key and an OMElement
as the value
Parameters: referenceParameters - |
|
|