org.apache.cxf.ws.addressing
Interface AddressingProperties

All Superinterfaces:
AddressingType
All Known Implementing Classes:
AddressingPropertiesImpl

public interface AddressingProperties
extends AddressingType

Abstraction of Message Addressing Properties.


Method Summary
 org.apache.cxf.ws.addressing.AttributedURIType getAction()
          Accessor for the Action property.
 org.apache.cxf.ws.addressing.EndpointReferenceType getFaultTo()
          Accessor for the FaultTo property.
 org.apache.cxf.ws.addressing.EndpointReferenceType getFrom()
          Accessor for the From property.
 org.apache.cxf.ws.addressing.AttributedURIType getMessageID()
          Accessor for the MessageID property.
 org.apache.cxf.ws.addressing.RelatesToType getRelatesTo()
          Accessor for the RelatesTo property.
 org.apache.cxf.ws.addressing.EndpointReferenceType getReplyTo()
          Accessor for the ReplyTo property.
 org.apache.cxf.ws.addressing.AttributedURIType getTo()
          Accessor for the To property.
 org.apache.cxf.ws.addressing.EndpointReferenceType getToEndpointReference()
          Accessor for the To property.
 void setAction(org.apache.cxf.ws.addressing.AttributedURIType iri)
          Mutator for the Action property.
 void setFaultTo(org.apache.cxf.ws.addressing.EndpointReferenceType ref)
          Mutator for the FaultTo property.
 void setFrom(org.apache.cxf.ws.addressing.EndpointReferenceType epr)
          Mutator for the From property.
 void setMessageID(org.apache.cxf.ws.addressing.AttributedURIType iri)
          Mutator for the MessageID property.
 void setRelatesTo(org.apache.cxf.ws.addressing.RelatesToType relatesTo)
          Mutator for the RelatesTo property.
 void setReplyTo(org.apache.cxf.ws.addressing.EndpointReferenceType ref)
          Mutator for the ReplyTo property.
 void setTo(org.apache.cxf.ws.addressing.EndpointReferenceType epr)
          Mutator for the To property.
 
Methods inherited from interface org.apache.cxf.ws.addressing.AddressingType
getNamespaceURI
 

Method Detail

getToEndpointReference

org.apache.cxf.ws.addressing.EndpointReferenceType getToEndpointReference()
Accessor for the To property.

Returns:
current value of To property

getTo

org.apache.cxf.ws.addressing.AttributedURIType getTo()
Accessor for the To property.

Returns:
current value of To property

setTo

void setTo(org.apache.cxf.ws.addressing.EndpointReferenceType epr)
Mutator for the To property.

Parameters:
epr - new value for To property

getFrom

org.apache.cxf.ws.addressing.EndpointReferenceType getFrom()
Accessor for the From property.

Returns:
current value of From property

setFrom

void setFrom(org.apache.cxf.ws.addressing.EndpointReferenceType epr)
Mutator for the From property.

Parameters:
epr - new value for From property

getMessageID

org.apache.cxf.ws.addressing.AttributedURIType getMessageID()
Accessor for the MessageID property.

Returns:
current value of MessageID property

setMessageID

void setMessageID(org.apache.cxf.ws.addressing.AttributedURIType iri)
Mutator for the MessageID property.

Parameters:
iri - new value for MessageID property

getReplyTo

org.apache.cxf.ws.addressing.EndpointReferenceType getReplyTo()
Accessor for the ReplyTo property.

Returns:
current value of ReplyTo property

setReplyTo

void setReplyTo(org.apache.cxf.ws.addressing.EndpointReferenceType ref)
Mutator for the ReplyTo property.

Parameters:
ref - new value for ReplyTo property

getFaultTo

org.apache.cxf.ws.addressing.EndpointReferenceType getFaultTo()
Accessor for the FaultTo property.

Returns:
current value of FaultTo property

setFaultTo

void setFaultTo(org.apache.cxf.ws.addressing.EndpointReferenceType ref)
Mutator for the FaultTo property.

Parameters:
ref - new value for FaultTo property

getRelatesTo

org.apache.cxf.ws.addressing.RelatesToType getRelatesTo()
Accessor for the RelatesTo property.

Returns:
current value of RelatesTo property

setRelatesTo

void setRelatesTo(org.apache.cxf.ws.addressing.RelatesToType relatesTo)
Mutator for the RelatesTo property.

Parameters:
relatesTo - new value for RelatesTo property

getAction

org.apache.cxf.ws.addressing.AttributedURIType getAction()
Accessor for the Action property.

Returns:
current value of Action property

setAction

void setAction(org.apache.cxf.ws.addressing.AttributedURIType iri)
Mutator for the Action property.

Parameters:
iri - new value for Action property


Apache CXF