*/
public class BinarySecretMarshaller extends XSBase64BinaryMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
BinarySecret bs = (BinarySecret) xmlObject;
if (bs.getType() != null) {
domElement.setAttributeNS(null, BinarySecret.TYPE_ATTRIB_NAME, bs.getType());
}
XMLHelper.marshallAttributeMap(bs.getUnknownAttributes(), domElement);
}