Package com.sun.xml.ws.security.secconv.impl.elements

Examples of com.sun.xml.ws.security.secconv.impl.elements.SecurityContextTokenImpl


        if (rdst instanceof JAXBElement){
            final JAXBElement rdstEle = (JAXBElement)rdst;
            final QName name = rdstEle.getName();
            if(SCT_QNAME.equals(name)){
                final SecurityContextTokenType sctType = (SecurityContextTokenType)rdstEle.getValue();
                setToken(new SecurityContextTokenImpl(sctType));
            }/*else if(EncryptedData_QNAME.equals(name)){
               EncryptedDataType edType = (EncryptedDataType)rdstEle.getValue();
               setToken(edType); 
            }else if(SAML11_Assertion_QNAME.equals(name)){
                AssertionType assertionType = (AssertionType)rdstEle.getValue();
View Full Code Here


    public static WSSCElementFactory newInstance() {
        return scElemFactory;
    }
   
    public SecurityContextToken createSecurityContextToken(final URI identifier, final String instance, final String wsuId){
        return new SecurityContextTokenImpl(identifier, instance, wsuId);
    }
View Full Code Here

TOP

Related Classes of com.sun.xml.ws.security.secconv.impl.elements.SecurityContextTokenImpl

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.