KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > core > plugins > page > PageURL


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.plugins.page;
10
11 import org.jboss.portal.server.ServerObjectID;
12 import org.jboss.portal.server.ServerURL;
13
14 /**
15  * Defines a URL for a page.
16  *
17  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
18  * @version $Revision: 1.2 $
19  */

20 public class PageURL extends ServerURL
21 {
22    public PageURL(ServerObjectID target)
23    {
24       super(target);
25    }
26 }
27
Popular Tags