Package com.sun.xml.ws.security.trust.impl.bindings

Examples of com.sun.xml.ws.security.trust.impl.bindings.ObjectFactory


    }
   
    public final void setDelegateTo(final DelegateTo to) {
        this.delegateTo = to;
        final JAXBElement<DelegateToType> dtElement =
                (new ObjectFactory()).createDelegateTo((DelegateToType)to);
        getAny().add(dtElement);
    }
View Full Code Here


    }
   
    public final void setForwardable(final boolean flag) {
        forwardable = flag;
        final JAXBElement<Boolean> forward =
                (new ObjectFactory()).createForwardable(flag);
        getAny().add(forward);
    }
View Full Code Here

    }
   
    public final void setDelegatable(final boolean flag) {
        this.delegatable = flag;
        final JAXBElement<Boolean> del =
                (new ObjectFactory()).createDelegatable(flag);
        getAny().add(del);
    }
View Full Code Here

    }
   
    public final void setAllowPostdating(final AllowPostdating allowPostdating) {
        apd = allowPostdating;
        final JAXBElement<AllowPostdatingType> allowPd =
                (new ObjectFactory()).createAllowPostdating((AllowPostdatingType)apd);
        getAny().add(allowPd);
    }
View Full Code Here

    }
   
    public final void setSignChallengeResponse(final SignChallengeResponse challenge) {
        signChallengeRes = challenge;
        final JAXBElement<SignChallengeType> challengeType =
                (new ObjectFactory()).createSignChallengeResponse((SignChallengeType)challenge);
        getAny().add(challengeType);
    }
View Full Code Here

    }
   
    public final void setAuthenticator(final Authenticator authenticator) {
        this.authenticator = authenticator;
        final JAXBElement<AuthenticatorType> authType =
                (new ObjectFactory()).createAuthenticator((AuthenticatorType)authenticator);
        getAny().add(authType);
    }
View Full Code Here

        return authenticator;
    }
   
    public final void setRequestedProofToken(final RequestedProofToken proofToken) {
        requestedProofToken = proofToken;
        final JAXBElement<RequestedProofTokenType> pElement =  (new ObjectFactory()).
                createRequestedProofToken((RequestedProofTokenType)proofToken);
        getAny().add(pElement);
    }
View Full Code Here

        return requestedProofToken;
    }
   
    public final void setRequestedSecurityToken(final RequestedSecurityToken securityToken) {
        requestedSecToken = securityToken;
        final JAXBElement<RequestedSecurityTokenType> rstElement =  (new ObjectFactory()).
                createRequestedSecurityToken((RequestedSecurityTokenType)securityToken);
       
        getAny().add(rstElement);
    }
View Full Code Here

        return requestedSecToken;
    }
   
    public final void setRequestedAttachedReference(final RequestedAttachedReference reference) {
        requestedAttachedReference = reference;
        final JAXBElement<RequestedReferenceType> raElement =  (new ObjectFactory()).
                createRequestedAttachedReference((RequestedReferenceType)reference);
        getAny().add(raElement);
    }
View Full Code Here

        return requestedAttachedReference;
    }
   
    public final void setRequestedUnattachedReference(final RequestedUnattachedReference reference) {
        requestedUnattachedReference = reference;
        final JAXBElement<RequestedReferenceType> raElement =  (new ObjectFactory()).
                createRequestedUnattachedReference((RequestedReferenceType)reference);
        getAny().add(raElement);
    }
View Full Code Here

TOP

Related Classes of com.sun.xml.ws.security.trust.impl.bindings.ObjectFactory

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.