KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > appserv > management > j2ee > Servlet


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23  
24 /*
25  * $Header: /cvs/glassfish/admin-core/mbeanapi/src/java/com/sun/appserv/management/j2ee/Servlet.java,v 1.4 2005/12/25 03:50:49 tcfujii Exp $
26  * $Revision: 1.4 $
27  * $Date: 2005/12/25 03:50:49 $
28  */

29  
30 package com.sun.appserv.management.j2ee;
31  
32
33 import com.sun.appserv.management.monitor.statistics.AltServletStats;
34
35 /**
36     @see com.sun.appserv.management.monitor.ServletMonitor
37     @see com.sun.appserv.management.monitor.WebModuleVirtualServerMonitor
38  */

39 public interface Servlet extends J2EEManagedObject
40 {
41     public final static String JavaDoc J2EE_TYPE = J2EETypes.SERVLET;
42     
43     /**
44         Class loading time
45     */

46     public int getClassLoadTime();
47
48     /**
49         Fully qualified class name of the managed object
50
51     */

52     public String JavaDoc getEngineName();
53
54     /**
55         Load time
56
57     */

58     public long getLoadTime();
59
60     /**
61         Type of the modeled resource.
62
63     */

64     public String JavaDoc getModelerType();
65
66 // -------------------- Operations --------------------
67
/**
68         @return String[]
69     */

70     public String JavaDoc[] findMappings();
71
72     
73 }
74
Popular Tags