KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > go > teaservlet > AdminApp


1 /*
2  * AdminApp.java
3  *
4  * Copyright (c) 2001 Walt Disney Internet Group. All Rights Reserved.
5  *
6  * Original author: Jonathan Colwell
7  *
8  * $Workfile:: AdminApp.java $
9  * $Author:: Jonathanc $
10  * $Revision:: 1 $
11  * $Date:: 5/04/01 12:03p $
12  */

13
14 package com.go.teaservlet;
15
16 /******************************************************************************
17  * This interface lets the ApplicationDepot know that this application will be
18  * providing links to the TeaservletAdmin Object for use on the admin pages.
19  *
20  * @author Jonathan Colwell
21  * @version
22  * <!--$$Revision:--> 1 <!-- $-->, <!--$$JustDate:--> 5/04/01 <!-- $-->
23  */

24 public interface AdminApp extends Application {
25     
26     /*
27      * Retrieves the administrative links for this application.
28      */

29     public AppAdminLinks getAdminLinks();
30
31 }
32
Popular Tags