Examples of LoginConfigurationImpl


Examples of com.sun.enterprise.deployment.LoginConfigurationImpl

                scNode.writeDescriptor(jarNode, WebTagNames.SECURITY_CONSTRAINT, sc);
            }
        }

        // login-config ?
        LoginConfigurationImpl lci = (LoginConfigurationImpl) webBundleDesc.getLoginConfiguration();
        if (lci!=null) {
            LoginConfigNode lcn = new LoginConfigNode();
            lcn.writeDescriptor(jarNode, WebTagNames.LOGIN_CONFIG, lci);
        }
       
View Full Code Here

Examples of org.glassfish.web.deployment.descriptor.LoginConfigurationImpl

     * @return the descriptor instance to associate with this XMLNode
     */
    @Override
    public LoginConfigurationImpl getDescriptor() {
        if (descriptor==null) {
            descriptor = new LoginConfigurationImpl();
        }
        return descriptor;
    }
View Full Code Here

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