~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to contrib/struts-faces/core-library/src/java/org/apache/struts/faces/Constants.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2002,2004 The Apache Software Foundation.
 
3
 * 
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 * 
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 * 
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
 
 
17
package org.apache.struts.faces;
 
18
 
 
19
 
 
20
/**
 
21
 * <p>Global manifest constants for the
 
22
 * <em>Struts-Faces Integration Library</em>.</p>
 
23
 *
 
24
 * @version $Rev: 54934 $ $Date: 2004-10-16 18:07:50 +0100 (Sat, 16 Oct 2004) $
 
25
 */
 
26
 
 
27
public final class Constants {
 
28
 
 
29
 
 
30
    // ----------------------------------------------------------- Constructors
 
31
 
 
32
 
 
33
    /**
 
34
     * <p>Protected constructor to disable instantiation.</p>
 
35
     */
 
36
    protected Constants() { }
 
37
 
 
38
 
 
39
    // ----------------------------------------------------- Manifest Constants
 
40
 
 
41
 
 
42
    /**
 
43
     * <p>Request attribute key under which the <code>ActionEvent</code>
 
44
     * from JavaServer Faces is recorded.
 
45
     */
 
46
    public static final String ACTION_EVENT_KEY =
 
47
        "org.apache.struts.faces.ACTION_EVENT";
 
48
 
 
49
 
 
50
}