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