*/
public class RequestSecurityTokenMarshaller extends AbstractWSTrustObjectMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
RequestSecurityToken rst = (RequestSecurityToken) xmlObject;
if (rst.getContext() != null) {
domElement.setAttributeNS(null, RequestSecurityToken.CONTEXT_ATTRIB_NAME, rst.getContext());
}
XMLHelper.marshallAttributeMap(rst.getUnknownAttributes(), domElement);
}