src/share/jaxws_classes/javax/xml/soap/SOAPHeader.java

Print this page
rev 507 : 8047724: @since tag cleanup in jaxws
Reviewed-by:

*** 64,73 **** --- 64,74 ---- * <PRE> * SOAPHeaderElement shElement = sh.addHeaderElement(name); * </PRE> * * @see SOAPHeaderElement + * @since 1.6 */ public interface SOAPHeader extends SOAPElement { /** * Creates a new <code>SOAPHeaderElement</code> object initialized with the * specified name and adds it to this <code>SOAPHeader</code> object.
*** 90,100 **** * <code>SOAPHeaderElement</code> object * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs * @see SOAPHeader#addHeaderElement(Name) ! * @since SAAJ 1.3 */ public SOAPHeaderElement addHeaderElement(QName qname) throws SOAPException; /** --- 91,101 ---- * <code>SOAPHeaderElement</code> object * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs * @see SOAPHeader#addHeaderElement(Name) ! * @since 1.6, SAAJ 1.3 */ public SOAPHeaderElement addHeaderElement(QName qname) throws SOAPException; /**
*** 113,123 **** * <code>actor</code> / <code>role</code> and are marked as MustUnderstand * @see #examineHeaderElements * @see #extractHeaderElements * @see SOAPConstants#URI_SOAP_ACTOR_NEXT * ! * @since SAAJ 1.2 */ public Iterator examineMustUnderstandHeaderElements(String actor); /** * Returns an <code>Iterator</code> over all the <code>SOAPHeaderElement</code> objects --- 114,124 ---- * <code>actor</code> / <code>role</code> and are marked as MustUnderstand * @see #examineHeaderElements * @see #extractHeaderElements * @see SOAPConstants#URI_SOAP_ACTOR_NEXT * ! * @since 1.6, SAAJ 1.2 */ public Iterator examineMustUnderstandHeaderElements(String actor); /** * Returns an <code>Iterator</code> over all the <code>SOAPHeaderElement</code> objects
*** 178,188 **** * <code>SOAPHeaderElement</code> object that was not understood. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. * @exception UnsupportedOperationException if this is a SOAP 1.1 Header. ! * @since SAAJ 1.3 */ public SOAPHeaderElement addNotUnderstoodHeaderElement(QName name) throws SOAPException; /** --- 179,189 ---- * <code>SOAPHeaderElement</code> object that was not understood. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. * @exception UnsupportedOperationException if this is a SOAP 1.1 Header. ! * @since 1.6, SAAJ 1.3 */ public SOAPHeaderElement addNotUnderstoodHeaderElement(QName name) throws SOAPException; /**
*** 194,204 **** * @param supportedSOAPURIs an <code>Iterator</code> object with the URIs of SOAP * versions supported. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. ! * @since SAAJ 1.3 */ public SOAPHeaderElement addUpgradeHeaderElement(Iterator supportedSOAPURIs) throws SOAPException; /** --- 195,205 ---- * @param supportedSOAPURIs an <code>Iterator</code> object with the URIs of SOAP * versions supported. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. ! * @since 1.6, SAAJ 1.3 */ public SOAPHeaderElement addUpgradeHeaderElement(Iterator supportedSOAPURIs) throws SOAPException; /**
*** 209,219 **** * * @param supportedSoapUris an array of the URIs of SOAP versions supported. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. ! * @since SAAJ 1.3 */ public SOAPHeaderElement addUpgradeHeaderElement(String[] supportedSoapUris) throws SOAPException; /** --- 210,220 ---- * * @param supportedSoapUris an array of the URIs of SOAP versions supported. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. ! * @since 1.6, SAAJ 1.3 */ public SOAPHeaderElement addUpgradeHeaderElement(String[] supportedSoapUris) throws SOAPException; /**
*** 224,234 **** * * @param supportedSoapUri the URI of SOAP the version that is supported. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. ! * @since SAAJ 1.3 */ public SOAPHeaderElement addUpgradeHeaderElement(String supportedSoapUri) throws SOAPException; /** --- 225,235 ---- * * @param supportedSoapUri the URI of SOAP the version that is supported. * @return the new <code>SOAPHeaderElement</code> object that was * inserted into this <code>SOAPHeader</code> object * @exception SOAPException if a SOAP error occurs. ! * @since 1.6, SAAJ 1.3 */ public SOAPHeaderElement addUpgradeHeaderElement(String supportedSoapUri) throws SOAPException; /**
*** 238,248 **** * @return an <code>Iterator</code> object over all the * <code>SOAPHeaderElement</code> objects contained by this * <code>SOAPHeader</code> * @see #extractAllHeaderElements * ! * @since SAAJ 1.2 */ public Iterator examineAllHeaderElements(); /** * Returns an <code>Iterator</code> over all the <code>SOAPHeaderElement</code> objects --- 239,249 ---- * @return an <code>Iterator</code> object over all the * <code>SOAPHeaderElement</code> objects contained by this * <code>SOAPHeader</code> * @see #extractAllHeaderElements * ! * @since 1.6, SAAJ 1.2 */ public Iterator examineAllHeaderElements(); /** * Returns an <code>Iterator</code> over all the <code>SOAPHeaderElement</code> objects
*** 253,262 **** * <code>SOAPHeaderElement</code> objects contained by this * <code>SOAPHeader</code> * * @see #examineAllHeaderElements * ! * @since SAAJ 1.2 */ public Iterator extractAllHeaderElements(); } --- 254,263 ---- * <code>SOAPHeaderElement</code> objects contained by this * <code>SOAPHeader</code> * * @see #examineAllHeaderElements * ! * @since 1.6, SAAJ 1.2 */ public Iterator extractAllHeaderElements(); }