Search in sources :

Example 1 with SessionConfig

use of org.glassfish.web.deployment.runtime.SessionConfig in project Payara by payara.

the class WebBundleRuntimeNode method addDescriptor.

/**
 * Adds a new DOL descriptor instance to the descriptor instance associated with this XMLNode
 *
 * @param newDescriptor the new descriptor
 */
@Override
public void addDescriptor(Object newDescriptor) {
    SunWebAppImpl sunWebApp = (SunWebAppImpl) descriptor.getSunDescriptor();
    if (newDescriptor instanceof WebComponentDescriptor) {
        WebComponentDescriptor servlet = (WebComponentDescriptor) newDescriptor;
        // for backward compatibility with s1as schema2beans generated desc
        Servlet s1descriptor = new Servlet();
        s1descriptor.setServletName(servlet.getCanonicalName());
        if (servlet.getRunAsIdentity() != null) {
            s1descriptor.setPrincipalName(servlet.getRunAsIdentity().getPrincipal());
        }
        sunWebApp.addServlet(s1descriptor);
    } else if (newDescriptor instanceof ServiceReferenceDescriptor) {
        descriptor.addServiceReferenceDescriptor((ServiceReferenceDescriptor) newDescriptor);
    } else if (newDescriptor instanceof SecurityRoleMapping) {
        SecurityRoleMapping srm = (SecurityRoleMapping) newDescriptor;
        sunWebApp.addSecurityRoleMapping(srm);
        // store it in the application using pure DOL descriptors...
        Application app = descriptor.getApplication();
        if (app != null) {
            Role role = new Role(srm.getRoleName());
            SecurityRoleMapper rm = app.getRoleMapper();
            if (rm != null) {
                List<PrincipalNameDescriptor> principals = srm.getPrincipalNames();
                for (int i = 0; i < principals.size(); i++) {
                    rm.assignRole(principals.get(i).getPrincipal(), role, descriptor);
                }
                List<String> groups = srm.getGroupNames();
                for (int i = 0; i < groups.size(); i++) {
                    rm.assignRole(new Group(groups.get(i)), role, descriptor);
                }
            }
        }
    } else if (newDescriptor instanceof IdempotentUrlPattern) {
        sunWebApp.addIdempotentUrlPattern((IdempotentUrlPattern) newDescriptor);
    } else if (newDescriptor instanceof SessionConfig) {
        sunWebApp.setSessionConfig((SessionConfig) newDescriptor);
    } else if (newDescriptor instanceof Cache) {
        sunWebApp.setCache((Cache) newDescriptor);
    } else if (newDescriptor instanceof ClassLoader) {
        sunWebApp.setClassLoader((ClassLoader) newDescriptor);
    } else if (newDescriptor instanceof JspConfig) {
        sunWebApp.setJspConfig((JspConfig) newDescriptor);
    } else if (newDescriptor instanceof LocaleCharsetInfo) {
        sunWebApp.setLocaleCharsetInfo((LocaleCharsetInfo) newDescriptor);
    } else if (newDescriptor instanceof WebProperty) {
        sunWebApp.addWebProperty((WebProperty) newDescriptor);
    } else if (newDescriptor instanceof Valve) {
        sunWebApp.addValve((Valve) newDescriptor);
    } else
        super.addDescriptor(descriptor);
}
Also used : SunWebAppImpl(org.glassfish.web.deployment.runtime.SunWebAppImpl) Group(org.glassfish.security.common.Group) JspConfig(org.glassfish.web.deployment.runtime.JspConfig) WebProperty(org.glassfish.web.deployment.runtime.WebProperty) SecurityRoleMapping(com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping) SecurityRoleMapper(org.glassfish.deployment.common.SecurityRoleMapper) IdempotentUrlPattern(com.sun.enterprise.deployment.runtime.web.IdempotentUrlPattern) PrincipalNameDescriptor(com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor) SessionConfig(org.glassfish.web.deployment.runtime.SessionConfig) ServiceReferenceDescriptor(com.sun.enterprise.deployment.ServiceReferenceDescriptor) Role(org.glassfish.security.common.Role) WebComponentDescriptor(com.sun.enterprise.deployment.WebComponentDescriptor) Servlet(org.glassfish.web.deployment.runtime.Servlet) ClassLoader(org.glassfish.web.deployment.runtime.ClassLoader) Valve(org.glassfish.web.deployment.runtime.Valve) Application(com.sun.enterprise.deployment.Application) LocaleCharsetInfo(org.glassfish.web.deployment.runtime.LocaleCharsetInfo) Cache(org.glassfish.web.deployment.runtime.Cache)

Example 2 with SessionConfig

use of org.glassfish.web.deployment.runtime.SessionConfig in project Payara by payara.

the class DynamicWebServletRegistrationImpl method configureSessionSettings.

/**
 * Create and configure the session manager for this web application
 * according to the persistence type specified.
 *
 * Also configure the other aspects of session management for this
 * web application according to the values specified in the session-config
 * element of sun-web.xml (and whether app is distributable)
 */
protected void configureSessionSettings(WebBundleDescriptor wbd, WebModuleConfig wmInfo) {
    SessionConfig cfg = null;
    SessionManager smBean = null;
    SessionProperties sessionPropsBean = null;
    CookieProperties cookieBean = null;
    if (iasBean != null) {
        cfg = iasBean.getSessionConfig();
        if (cfg != null) {
            smBean = cfg.getSessionManager();
            sessionPropsBean = cfg.getSessionProperties();
            cookieBean = cfg.getCookieProperties();
        }
    }
    configureSessionManager(smBean, wbd, wmInfo);
    configureSession(sessionPropsBean, wbd);
    configureCookieProperties(cookieBean);
}
Also used : CookieProperties(org.glassfish.web.deployment.runtime.CookieProperties) SessionProperties(org.glassfish.web.deployment.runtime.SessionProperties) SessionManager(org.glassfish.web.deployment.runtime.SessionManager) SessionConfig(org.glassfish.web.deployment.runtime.SessionConfig)

Aggregations

SessionConfig (org.glassfish.web.deployment.runtime.SessionConfig)2 Application (com.sun.enterprise.deployment.Application)1 ServiceReferenceDescriptor (com.sun.enterprise.deployment.ServiceReferenceDescriptor)1 WebComponentDescriptor (com.sun.enterprise.deployment.WebComponentDescriptor)1 PrincipalNameDescriptor (com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor)1 SecurityRoleMapping (com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping)1 IdempotentUrlPattern (com.sun.enterprise.deployment.runtime.web.IdempotentUrlPattern)1 SecurityRoleMapper (org.glassfish.deployment.common.SecurityRoleMapper)1 Group (org.glassfish.security.common.Group)1 Role (org.glassfish.security.common.Role)1 Cache (org.glassfish.web.deployment.runtime.Cache)1 ClassLoader (org.glassfish.web.deployment.runtime.ClassLoader)1 CookieProperties (org.glassfish.web.deployment.runtime.CookieProperties)1 JspConfig (org.glassfish.web.deployment.runtime.JspConfig)1 LocaleCharsetInfo (org.glassfish.web.deployment.runtime.LocaleCharsetInfo)1 Servlet (org.glassfish.web.deployment.runtime.Servlet)1 SessionManager (org.glassfish.web.deployment.runtime.SessionManager)1 SessionProperties (org.glassfish.web.deployment.runtime.SessionProperties)1 SunWebAppImpl (org.glassfish.web.deployment.runtime.SunWebAppImpl)1 Valve (org.glassfish.web.deployment.runtime.Valve)1