*/
public class UseKeyMarshaller extends AbstractWSTrustObjectMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
UseKey useKey = (UseKey) xmlObject;
if (useKey.getSig() != null) {
domElement.setAttributeNS(null, UseKey.SIG_ATTRIB_NAME, useKey.getSig());
}
super.marshallAttributes(xmlObject, domElement);
}