KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > webapp > util > testimonials > TestimonialModuleWebConstants


1 /*
2  * Copyright 2004 Blandware (http://www.blandware.com)
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 package com.blandware.atleap.webapp.util.testimonials;
17
18 /**
19  * <p>Webapp constants for testimonial module</p>
20  * <p/>
21  * <p><a HREF="TestimonialModuleWebConstants.java.htm"><i>View Source</i></a></p>
22  *
23  * @author Andrey Grebnev <a HREF="mailto:andrey.grebnev@blandware.com">&lt;andrey.grebnev@blandware.com&gt;</a>
24  * @version $Revision: 1.2 $ $Date: 2005/06/01 10:00:13 $
25  */

26 public class TestimonialModuleWebConstants {
27
28     /**
29      * Context key under which ID of testimonial item is saved
30      */

31     public static final String JavaDoc TESTIMONIAL_ID_KEY = "com.blandware.atleap.testimonial.TESTIMONIAL_ID";
32
33     /**
34      * Name of testimonial items grid
35      */

36     public static final String JavaDoc TESTIMONIALS_GRID = "testimonialsGrid";
37
38     /**
39      * Name of grid with testimonial archive
40      */

41     public static final String JavaDoc TESTIMONIAL_COLLECTION_GRID = "testimonialArchiveGrid";
42
43     /**
44      * Context key, under which collection of testimonial items is saved
45      */

46     public static final String JavaDoc TESTIMONIALS_COLLECTION_KEY = "com.blandware.atleap.testimonial.TESTIMONIALS_COLLECTION";
47
48     /**
49      * UrlRewrite filter prefix for testimonial items
50      */

51     public static final String JavaDoc TESTIMONIAL_URI_PREFIX = "/rw/testimonials";
52
53     /**
54      * Context key under which merged body of testimonial item is stored
55      */

56     public static final String JavaDoc TESTIMONIAL_MERGED_BODY_KEY = "com.blandware.atleap.TESTIMONIAL_MERGED_BODY";
57
58     /**
59      * Context key which prevents double form submit (instead of transactions)
60      */

61     public static final String JavaDoc TESTIMONIAL_SUBMITTED_ACTION_KEY = "com.blandware.atleap.TESTIMONIAL_SUBMITTED_ACTION_KEY";
62
63 }
64
Popular Tags