Package org.opensaml.xml.schema

Examples of org.opensaml.xml.schema.XSBooleanValue


    }

    /** {@inheritDoc} */
    public void setReturnContext(Boolean returnContext) {
        if (returnContext != null) {
            this.returnContext = prepareForAssignment(this.returnContext, new XSBooleanValue(returnContext, false));
        } else {
            this.returnContext = prepareForAssignment(this.returnContext, null);
        }
    }
View Full Code Here


    /** {@inheritDoc} */
    public void setSOAP11MustUnderstand(Boolean newMustUnderstand) {
        if (newMustUnderstand != null) {
            soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand,
                    new XSBooleanValue(newMustUnderstand, true));
        } else {
            soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand, null);
        }
    }
View Full Code Here

    /** {@inheritDoc} */
    public void setSOAP11MustUnderstand(Boolean newMustUnderstand) {
        if (newMustUnderstand != null) {
            soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand,
                    new XSBooleanValue(newMustUnderstand, true));
        } else {
            soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand, null);
        }
    }
View Full Code Here

    }

    /** {@inheritDoc} */
    public void setAllowCreate(Boolean newAllowCreate){
        if(newAllowCreate != null){
            allowCreate = prepareForAssignment(allowCreate, new XSBooleanValue(newAllowCreate, false));
        }else{
            allowCreate = prepareForAssignment(allowCreate, null);
        }
    }
View Full Code Here

    }
   
    /** {@inheritDoc} */
    public void setWantAuthnRequestsSigned(Boolean newWantSigned){
        if(newWantSigned != null){
            wantAuthnRequestsSigned = prepareForAssignment(wantAuthnRequestsSigned, new XSBooleanValue(newWantSigned, false));
        }else{
            wantAuthnRequestsSigned = prepareForAssignment(wantAuthnRequestsSigned, null);
        }
    }
View Full Code Here

    }

    /** {@inheritDoc} */
    public void setForceAuthn(Boolean newForceAuth) {
        if (newForceAuth != null) {
            forceAuthn = prepareForAssignment(forceAuthn, new XSBooleanValue(newForceAuth, false));
        } else {
            forceAuthn = prepareForAssignment(forceAuthn, null);
        }
    }
View Full Code Here

    }

    /** {@inheritDoc} */
    public void setIsPassive(Boolean newIsPassive) {
        if (newIsPassive != null) {
            isPassive = prepareForAssignment(isPassive, new XSBooleanValue(newIsPassive, false));
        } else {
            isPassive = prepareForAssignment(isPassive, null);
        }
    }
View Full Code Here

    }
   
    /** {@inheritDoc} */
    public void setAuthnRequestsSigned(Boolean newIsSigned) {
        if(newIsSigned != null){
            authnRequestSigned = prepareForAssignment(authnRequestSigned, new XSBooleanValue(newIsSigned, false));
        }else{
            authnRequestSigned = prepareForAssignment(authnRequestSigned, null);
        }
    }
View Full Code Here

    }
   
    /** {@inheritDoc} */
    public void setWantAssertionsSigned(Boolean wantAssestionSigned) {
        if(wantAssestionSigned != null){
            assertionSigned = prepareForAssignment(assertionSigned, new XSBooleanValue(wantAssestionSigned, false));
        }else{
            assertionSigned = prepareForAssignment(assertionSigned, null);
        }
    }
View Full Code Here

    }
   
    /** {@inheritDoc} */
    public void setIsDefault(Boolean newIsDefault){
        if(newIsDefault != null){
            isDefault = prepareForAssignment(isDefault, new XSBooleanValue(newIsDefault, false));
        }else{
            isDefault = prepareForAssignment(isDefault, null);
        }
    }
View Full Code Here

TOP

Related Classes of org.opensaml.xml.schema.XSBooleanValue

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.