Examples of BinarySecret


Examples of org.opensaml.ws.wstrust.BinarySecret

*/
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);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.