Package org.opensaml.ws.wstrust

Examples of org.opensaml.ws.wstrust.Delegatable


public class DelegatableUnmarshaller extends AbstractWSTrustObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        if (elementContent != null) {
            Delegatable delegatable = (Delegatable) xmlObject;
            XSBooleanValue value = XSBooleanValue.valueOf(elementContent);
            delegatable.setValue(value);
        }
    }
View Full Code Here


*/
public class DelegatableMarshaller extends AbstractWSTrustObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        Delegatable delegatable = (Delegatable) xmlObject;
        XSBooleanValue value= delegatable.getValue();
        XMLHelper.appendTextContent(domElement, value.toString());
    }
View Full Code Here

*/
public class DelegatableMarshaller extends AbstractWSTrustObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        Delegatable delegatable = (Delegatable) xmlObject;
        XSBooleanValue value= delegatable.getValue();
        XMLHelper.appendTextContent(domElement, value.toString());
    }
View Full Code Here

public class DelegatableUnmarshaller extends AbstractWSTrustObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        if (elementContent != null) {
            Delegatable delegatable = (Delegatable) xmlObject;
            XSBooleanValue value = XSBooleanValue.valueOf(elementContent);
            delegatable.setValue(value);
        }
    }
View Full Code Here

TOP

Related Classes of org.opensaml.ws.wstrust.Delegatable

Copyright © 2018 www.massapicom. 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.