KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > core > invocation > CoreAttachmentKey


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.core.invocation;
10
11 import org.jboss.portal.server.invocation.AttachmentKey;
12
13 /**
14  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
15  * @version $Revision: 1.3 $
16  */

17 public class CoreAttachmentKey extends AttachmentKey
18 {
19
20    public static final AttachmentKey PAGE = new CoreAttachmentKey("PAGE");
21
22    /** The path info relative to the portal. */
23    public static final AttachmentKey PORTAL_PATH_INFO = new CoreAttachmentKey("PORTAL_PATH_INFO");
24
25    protected CoreAttachmentKey(String JavaDoc name)
26    {
27       super(name);
28    }
29 }
30
Popular Tags