*/
public class RelayStateMarshaller extends XSStringMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
RelayState relayState = (RelayState) xmlObject;
if (relayState.isSOAP11MustUnderstandXSBoolean() != null) {
XMLHelper.marshallAttribute(RelayState.SOAP11_MUST_UNDERSTAND_ATTR_NAME,
relayState.isSOAP11MustUnderstandXSBoolean().toString(), domElement, false);
}
if (relayState.getSOAP11Actor() != null) {
XMLHelper.marshallAttribute(RelayState.SOAP11_ACTOR_ATTR_NAME,
relayState.getSOAP11Actor(), domElement, false);
}
}