super(targetNamespaceURI, targetLocalName);
}
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject samlObject, Element domElement) throws MarshallingException {
RequestedAttribute requestedAttribute = (RequestedAttribute) samlObject;
if (requestedAttribute.isRequiredXSBoolean() != null) {
domElement.setAttributeNS(null, RequestedAttribute.IS_REQUIRED_ATTRIB_NAME,
requestedAttribute.isRequiredXSBoolean().toString());
}
super.marshallAttributes(samlObject, domElement);
}