KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > junit > TestAttachmentKey


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

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

19 public class TestAttachmentKey
20    extends AttachmentKey
21 {
22
23    public static final TestAttachmentKey TEST_WINDOWS = new TestAttachmentKey("TEST_WINDOWS");
24
25    private TestAttachmentKey(String JavaDoc name)
26    {
27       super(name);
28    }
29 }
30
Popular Tags