Searched refs:relay (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPHeaderElement.java126 * Sets the <i>relay</i> attribute for this <code>SOAPHeaderElement</code> to be
129 * The SOAP relay attribute is set to true to indicate that the SOAP header
136 * @param relay the new value of the <i>relay</i> attribute
139 * relay attribute.
148 public void setRelay(boolean relay) throws SOAPException; argument
151 * Returns the boolean value of the <i>relay</i> attribute for this
154 * @return <code>true</code> if the relay attribute is turned on;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DHeaderElement1_2Impl.java87 return NameImpl.create("relay", null, NameImpl.SOAP12_NAMESPACE);
90 //relay attribute has literal value "true" or "false"
91 protected String getRelayLiteralValue(boolean relay) { argument
92 return (relay == true ? "true" : "false");
95 protected boolean getRelayAttributeValue(String relay) { argument
96 if (relay.equals("true") || relay.equals("1"))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DHeaderElementImpl.java39 NameImpl.createFromTagName("relay");
120 public void setRelay(boolean relay) throws SOAPException { argument
125 getRelayLiteralValue(relay));

Completed in 29 milliseconds