cgl.narada.wsinfra.wsa
Interface AddressingHeaders

All Known Implementing Classes:
AddressingHeadersImpl

public interface AddressingHeaders

This interface accumulates all WS-Addressing related headers that can be present in the Header of a SOAP message. This is useful since WS-Addressing elements are not nested.


Method Summary
 ActionDocument getAction()
          Retrieves the Action element.
 FaultToDocument getFaultTo()
          Retrieves the FaultTo element.
 FromDocument getFrom()
          Retrieves the From element.
 MessageIDDocument getMessageID()
          Retrieves the MessageID element.
 RelatesToDocument getRelatesTo()
          Retrieves the RelatesTo element.
 ReplyAfterDocument getReplyAfter()
          Retrieves the ReplyAfter element.
 ReplyToDocument getReplyTo()
          Retrieves the ReplyTo element.
 ToDocument getTo()
          Retrieves the To element.
 boolean hasAction()
          Checks if an action has been specified
 boolean hasFaultTo()
          Checks to see if the FaultTo element is available
 boolean hasFrom()
          Checks to see if the From element is available
 boolean hasMessageID()
          Checks to see if the MessageID element is available
 boolean hasRelatesTo()
          Checks to see if the RelatesTo element is available
 boolean hasReplyAfter()
          Checks to see if the ReplyAfter element is available
 boolean hasReplyTo()
          Checks to see if the ReplyTo element is available
 boolean hasTo()
          Checks to see if the To element is available
 

Method Detail

getAction

public ActionDocument getAction()
Retrieves the Action element. This will return a NULL if the element is not present.


hasAction

public boolean hasAction()
Checks if an action has been specified


getFrom

public FromDocument getFrom()
Retrieves the From element. This will return a NULL if the element is not present.


hasFrom

public boolean hasFrom()
Checks to see if the From element is available


getTo

public ToDocument getTo()
Retrieves the To element. This will return a NULL if the element is not present.


hasTo

public boolean hasTo()
Checks to see if the To element is available


getReplyTo

public ReplyToDocument getReplyTo()
Retrieves the ReplyTo element. This will return a NULL if the element is not present.


hasReplyTo

public boolean hasReplyTo()
Checks to see if the ReplyTo element is available


getReplyAfter

public ReplyAfterDocument getReplyAfter()
Retrieves the ReplyAfter element. This will return a NULL if the element is not present.


hasReplyAfter

public boolean hasReplyAfter()
Checks to see if the ReplyAfter element is available


getFaultTo

public FaultToDocument getFaultTo()
Retrieves the FaultTo element. This will return a NULL if the element is not present.


hasFaultTo

public boolean hasFaultTo()
Checks to see if the FaultTo element is available


getRelatesTo

public RelatesToDocument getRelatesTo()
Retrieves the RelatesTo element. This will return a NULL if the element is not present.


hasRelatesTo

public boolean hasRelatesTo()
Checks to see if the RelatesTo element is available


getMessageID

public MessageIDDocument getMessageID()
Retrieves the MessageID element. This will return a NULL if the element is not present.


hasMessageID

public boolean hasMessageID()
Checks to see if the MessageID element is available