| Method from com.sun.xml.internal.messaging.saaj.soap.ver1_1.HeaderElement1_1Impl Detail: |
protected NameImpl getActorAttributeName() {
return NameImpl.create("actor", null, NameImpl.SOAP11_NAMESPACE);
}
|
protected String getActorOrRole() {
return getActor();
}
|
protected NameImpl getMustunderstandAttributeName() {
return NameImpl.create("mustUnderstand", null, NameImpl.SOAP11_NAMESPACE);
}
|
protected boolean getMustunderstandAttributeValue(String mu) {
if ("1".equals(mu) || "true".equalsIgnoreCase(mu))
return true;
return false;
}
|
protected String getMustunderstandLiteralValue(boolean mustUnderstand) {
return (mustUnderstand == true ? "1" : "0");
}
|
protected NameImpl getRelayAttributeName() {
log.log(
Level.SEVERE,
"SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
new String[] { "Relay" });
throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
}
|
protected boolean getRelayAttributeValue(String mu) {
log.log(
Level.SEVERE,
"SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
new String[] { "Relay" });
throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
}
|
protected String getRelayLiteralValue(boolean relayAttr) {
log.log(
Level.SEVERE,
"SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
new String[] { "Relay" });
throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
}
|
protected NameImpl getRoleAttributeName() {
log.log(
Level.SEVERE,
"SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
new String[] { "Role" });
throw new UnsupportedOperationException("Role not supported by SOAP 1.1");
}
|
public SOAPElement setElementQName(QName newName) throws SOAPException {
HeaderElementImpl copy =
new HeaderElement1_1Impl((SOAPDocumentImpl) getOwnerDocument(), newName);
return replaceElementWithSOAPElement(this,copy);
}
|