*/
public class ClaimsMarshaller extends AbstractWSTrustObjectMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
Claims claims = (Claims) xmlObject;
if (claims.getDialect() != null) {
domElement.setAttributeNS(null, Claims.DIALECT_ATTRIB_NAME, claims.getDialect());
}
XMLHelper.marshallAttributeMap(claims.getUnknownAttributes(), domElement);
}