*/
public class RenewingMarshaller extends AbstractWSTrustObjectMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
Renewing renewing = (Renewing) xmlObject;
if (renewing.isAllowXSBoolean() != null) {
domElement.setAttributeNS(null, Renewing.ALLOW_ATTRIB_NAME, renewing.isAllowXSBoolean().toString());
}
if (renewing.isOKXSBoolean() != null) {
domElement.setAttributeNS(null, Renewing.OK_ATTRIB_NAME, renewing.isOKXSBoolean().toString());
}
}