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 } 51