Package org.jvnet.glassfish.comms.deployment.backend

Examples of org.jvnet.glassfish.comms.deployment.backend.LoginConfigurationImpl


            throw new RuntimeException(use);
        } catch (java.net.MalformedURLException mue) {
            //log
            throw new RuntimeException(mue);
        }
        LoginConfigurationImpl loginConfig = (LoginConfigurationImpl) sipApplicationModel.getLoginConfiguration();
        if (loginConfig != null) {
            authMethod = loginConfig.getAuthenticationMethod();
            if (!"DIGEST".equalsIgnoreCase(authMethod)) {
                throw new RuntimeException(authMethod + " is not supported");
            }
            realmName = loginConfig.getRealmName();
            assertionType = loginConfig.getIdentityAssertionScheme();
            String supportType = loginConfig.getIdentityAssertionSupport();
            if ("REQUIRED".equals(supportType)) {
                idAssertionSupport = true;
            }

            WebProperty[] wblist = sipApplicationModel.getSunSipDescriptor().getWebProperty();
View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.deployment.backend.LoginConfigurationImpl

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.