~ubuntu-branches/ubuntu/trusty/tomcat7/trusty-security

« back to all changes in this revision

Viewing changes to java/org/apache/catalina/util/SessionConfig.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2012-06-07 22:43:21 UTC
  • mfrom: (11.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120607224321-cfev8j681yueyov3
Tags: 7.0.27-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 
 * contributor license agreements.  See the NOTICE file distributed with
4
 
 * this work for additional information regarding copyright ownership.
5
 
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 
 * (the "License"); you may not use this file except in compliance with
7
 
 * the License.  You may obtain a copy of the License at
8
 
 *
9
 
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 
 *
11
 
 * Unless required by applicable law or agreed to in writing, software
12
 
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
 * See the License for the specific language governing permissions and
15
 
 * limitations under the License.
16
 
 */
17
 
package org.apache.catalina.util;
18
 
 
19
 
import javax.servlet.SessionCookieConfig;
20
 
 
21
 
import org.apache.catalina.Context;
22
 
 
23
 
public class SessionConfig {
24
 
 
25
 
    private static final String DEFAULT_SESSION_COOKIE_NAME = "JSESSIONID";
26
 
    private static final String DEFAULT_SESSION_PARAMETER_NAME = "jsessionid";
27
 
 
28
 
    /**
29
 
     * Determine the name to use for the session cookie for the provided
30
 
     * context.
31
 
     * @param context
32
 
     */
33
 
    public static String getSessionCookieName(Context context) {
34
 
 
35
 
        String result = getConfiguredSessionCookieName(context);
36
 
 
37
 
        if (result == null) {
38
 
            result = DEFAULT_SESSION_COOKIE_NAME;
39
 
        }
40
 
 
41
 
        return result;
42
 
    }
43
 
 
44
 
    /**
45
 
     * Determine the name to use for the session cookie for the provided
46
 
     * context.
47
 
     * @param context
48
 
     */
49
 
    public static String getSessionUriParamName(Context context) {
50
 
 
51
 
        String result = getConfiguredSessionCookieName(context);
52
 
 
53
 
        if (result == null) {
54
 
            result = DEFAULT_SESSION_PARAMETER_NAME;
55
 
        }
56
 
 
57
 
        return result;
58
 
    }
59
 
 
60
 
 
61
 
    private static String getConfiguredSessionCookieName(Context context) {
62
 
 
63
 
        // Priority is:
64
 
        // 1. Cookie name defined in context
65
 
        // 2. Cookie name configured for app
66
 
        // 3. Default defined by spec
67
 
        if (context != null) {
68
 
            String cookieName = context.getSessionCookieName();
69
 
            if (cookieName != null && cookieName.length() > 0) {
70
 
                return cookieName;
71
 
            }
72
 
 
73
 
            SessionCookieConfig scc =
74
 
                context.getServletContext().getSessionCookieConfig();
75
 
            cookieName = scc.getName();
76
 
            if (cookieName != null && cookieName.length() > 0) {
77
 
                return cookieName;
78
 
            }
79
 
        }
80
 
 
81
 
        return null;
82
 
    }
83
 
 
84
 
 
85
 
    private SessionConfig() {
86
 
        // Utility class. Hide default constructor.
87
 
    }
88
 
}
 
1
/*
 
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 * contributor license agreements.  See the NOTICE file distributed with
 
4
 * this work for additional information regarding copyright ownership.
 
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 * (the "License"); you may not use this file except in compliance with
 
7
 * the License.  You may obtain a copy of the License at
 
8
 *
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 *
 
11
 * Unless required by applicable law or agreed to in writing, software
 
12
 * distributed under the License is distributed on an "AS IS" BASIS,
 
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 * See the License for the specific language governing permissions and
 
15
 * limitations under the License.
 
16
 */
 
17
package org.apache.catalina.util;
 
18
 
 
19
import javax.servlet.SessionCookieConfig;
 
20
 
 
21
import org.apache.catalina.Context;
 
22
 
 
23
public class SessionConfig {
 
24
 
 
25
    private static final String DEFAULT_SESSION_COOKIE_NAME = "JSESSIONID";
 
26
    private static final String DEFAULT_SESSION_PARAMETER_NAME = "jsessionid";
 
27
 
 
28
    /**
 
29
     * Determine the name to use for the session cookie for the provided
 
30
     * context.
 
31
     * @param context
 
32
     */
 
33
    public static String getSessionCookieName(Context context) {
 
34
 
 
35
        String result = getConfiguredSessionCookieName(context);
 
36
 
 
37
        if (result == null) {
 
38
            result = DEFAULT_SESSION_COOKIE_NAME;
 
39
        }
 
40
 
 
41
        return result;
 
42
    }
 
43
 
 
44
    /**
 
45
     * Determine the name to use for the session cookie for the provided
 
46
     * context.
 
47
     * @param context
 
48
     */
 
49
    public static String getSessionUriParamName(Context context) {
 
50
 
 
51
        String result = getConfiguredSessionCookieName(context);
 
52
 
 
53
        if (result == null) {
 
54
            result = DEFAULT_SESSION_PARAMETER_NAME;
 
55
        }
 
56
 
 
57
        return result;
 
58
    }
 
59
 
 
60
 
 
61
    private static String getConfiguredSessionCookieName(Context context) {
 
62
 
 
63
        // Priority is:
 
64
        // 1. Cookie name defined in context
 
65
        // 2. Cookie name configured for app
 
66
        // 3. Default defined by spec
 
67
        if (context != null) {
 
68
            String cookieName = context.getSessionCookieName();
 
69
            if (cookieName != null && cookieName.length() > 0) {
 
70
                return cookieName;
 
71
            }
 
72
 
 
73
            SessionCookieConfig scc =
 
74
                context.getServletContext().getSessionCookieConfig();
 
75
            cookieName = scc.getName();
 
76
            if (cookieName != null && cookieName.length() > 0) {
 
77
                return cookieName;
 
78
            }
 
79
        }
 
80
 
 
81
        return null;
 
82
    }
 
83
 
 
84
 
 
85
    private SessionConfig() {
 
86
        // Utility class. Hide default constructor.
 
87
    }
 
88
}