Skip navigation links

Java API Reference for Oracle Infrastructure Web Services
11
Release 1 (11.1.1)

E10654-02


oracle.webservices.enumeration
Class EnumerateResponseMessage

java.lang.Object
  extended by oracle.webservices.addressing.AddressingMessage
      extended by oracle.webservices.enumeration.EnumerationMessage
          extended by oracle.webservices.enumeration.EnumerateResponseMessage


public class EnumerateResponseMessage
extends EnumerationMessage

This class helps to create/parse a SOAP envelope containing a WS-Enumeration EnumerateResponse message.

An example of how to use this class to understand an EnumerateResponse same as WS-Enumeration spec:

        EnumerateResponseMessage response = (EnumerateResponseMessage)request.send(ENDPOINT);

        System.out.println(response.getExpires());

        EnumerationContextType context = response.getEnumerationContext();
        List list = context.getContent();
        System.out.println(list.get(0));
 

Field Summary
static String ENUMERATE_RESPONSE_ACTION_URI
           

 

Fields inherited from class oracle.webservices.addressing.AddressingMessage
ACTION_NOT_SUPPORTED_SUBCODE, DESTINATION_UNREACHABLE_SUBCODE, ENDPOINT_UNAVAILABLE_SUBCODE, INVALID_MESSAGE_INFORMATION_HEADER_SUBCODE, MESSAGE_INFORMATION_HEADER_REQUIRED_SUBCODE

 

Constructor Summary
EnumerateResponseMessage()
          The constructor for creating an EnumerateResponseMessage
EnumerateResponseMessage(SOAPMessage msg)
          The constructor for parsing an EnumerateResponseMessage
EnumerateResponseMessage(String addressingNamespace)
           
EnumerateResponseMessage(String addressingNamespace, boolean usingSOAP12)
           

 

Method Summary
 EnumerateResponse getEnumerateResponse()
           
 void setAction(String action)
          Overwrite setAction() so that actoin is always http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse
 void setEnumerateResponse(EnumerateResponse enumerateResponse)
          Set the EnumerateResponse.

 

Methods inherited from class oracle.webservices.addressing.AddressingMessage
addRelatesTo, addRelatesTo, addRelatesTo, addRelatesTo, getAction, getAddressingNamespace, getFaultTo, getFrom, getMessageID, getRelatesTo, getReplyTo, getSOAPMessage, getTo, send, send, setFaultTo, setFaultTo, setFrom, setFrom, setMessageID, setReplyTo, setReplyTo, setSOAPVersion, setTo, setTo

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Field Detail

ENUMERATE_RESPONSE_ACTION_URI

public static final String ENUMERATE_RESPONSE_ACTION_URI
See Also:
Constant Field Values

Constructor Detail

EnumerateResponseMessage

public EnumerateResponseMessage()
                         throws SOAPException,
                                URISyntaxException
The constructor for creating an EnumerateResponseMessage
Throws:
SOAPException
URISyntaxException

EnumerateResponseMessage

public EnumerateResponseMessage(String addressingNamespace)
                         throws SOAPException,
                                URISyntaxException
Throws:
SOAPException
URISyntaxException

EnumerateResponseMessage

public EnumerateResponseMessage(String addressingNamespace,
                                boolean usingSOAP12)
                         throws SOAPException,
                                URISyntaxException
Throws:
SOAPException
URISyntaxException

EnumerateResponseMessage

public EnumerateResponseMessage(SOAPMessage msg)
                         throws SOAPException
The constructor for parsing an EnumerateResponseMessage
Parameters:
msg -
Throws:
SOAPException

Method Detail

setAction

public final void setAction(String action)
                     throws URISyntaxException
Overwrite setAction() so that actoin is always http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse
Overrides:
setAction in class AddressingMessage
Throws:
URISyntaxException

getEnumerateResponse

public EnumerateResponse getEnumerateResponse()
                                       throws SOAPException
Returns:
Returns the EnumerateResponse.
Throws:
SOAPException

setEnumerateResponse

public void setEnumerateResponse(EnumerateResponse enumerateResponse)
                          throws SOAPException
Set the EnumerateResponse.
Parameters:
enumerateResponse -
Throws:
SOAPException

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.