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

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

*** 31,40 **** --- 31,42 ---- * The immediate children of a <code>SOAPHeader</code> object can * be represented only as <code>SOAPHeaderElement</code> objects. * <P> * A <code>SOAPHeaderElement</code> object can have other * <code>SOAPElement</code> objects as its children. + * + * @since 1.6 */ public interface SOAPHeaderElement extends SOAPElement { /** * Sets the actor associated with this <code>SOAPHeaderElement</code>
*** 63,73 **** * @throws SOAPException if there is an error in setting the role * * @exception UnsupportedOperationException if this message does not * support the SOAP 1.2 concept of Fault Role. * ! * @since SAAJ 1.3 */ public void setRole(String uri) throws SOAPException; /** * Returns the uri of the <i>actor</i> attribute of this --- 65,75 ---- * @throws SOAPException if there is an error in setting the role * * @exception UnsupportedOperationException if this message does not * support the SOAP 1.2 concept of Fault Role. * ! * @since 1.6, SAAJ 1.3 */ public void setRole(String uri) throws SOAPException; /** * Returns the uri of the <i>actor</i> attribute of this
*** 87,97 **** * @return a <code>String</code> giving the URI of the <code>Role</code> * * @exception UnsupportedOperationException if this message does not * support the SOAP 1.2 concept of Fault Role. * ! * @since SAAJ 1.3 */ public String getRole(); /** * Sets the mustUnderstand attribute for this <code>SOAPHeaderElement</code> --- 89,99 ---- * @return a <code>String</code> giving the URI of the <code>Role</code> * * @exception UnsupportedOperationException if this message does not * support the SOAP 1.2 concept of Fault Role. * ! * @since 1.6, SAAJ 1.3 */ public String getRole(); /** * Sets the mustUnderstand attribute for this <code>SOAPHeaderElement</code>
*** 141,151 **** * support the SOAP 1.2 concept of Relay attribute. * * @see #setMustUnderstand * @see #getRelay * ! * @since SAAJ 1.3 */ public void setRelay(boolean relay) throws SOAPException; /** * Returns the boolean value of the <i>relay</i> attribute for this --- 143,153 ---- * support the SOAP 1.2 concept of Relay attribute. * * @see #setMustUnderstand * @see #getRelay * ! * @since 1.6, SAAJ 1.3 */ public void setRelay(boolean relay) throws SOAPException; /** * Returns the boolean value of the <i>relay</i> attribute for this
*** 158,166 **** * support the SOAP 1.2 concept of Relay attribute. * * @see #getMustUnderstand * @see #setRelay * ! * @since SAAJ 1.3 */ public boolean getRelay(); } --- 160,168 ---- * support the SOAP 1.2 concept of Relay attribute. * * @see #getMustUnderstand * @see #setRelay * ! * @since 1.6, SAAJ 1.3 */ public boolean getRelay(); }