KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > monitor > stats > lb > InstanceStatsInterface


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 package com.sun.enterprise.admin.monitor.stats.lb;
25
26 //
27
// This interface has all of the bean info accessor methods.
28
//
29

30 public interface InstanceStatsInterface {
31     public java.lang.String JavaDoc getNumTotalRequests();
32
33     public java.lang.String JavaDoc getId();
34
35     public void setNumActiveRequests(java.lang.String JavaDoc value);
36
37     public void setNumTotalRequests(java.lang.String JavaDoc value);
38
39     public void setApplicationStatsNumErrorRequests(java.lang.String JavaDoc value);
40
41     public int removeApplicationStats(boolean value);
42
43     public void setApplicationStatsNumFailoverRequests(java.lang.String JavaDoc value);
44
45     public java.lang.String JavaDoc getNumActiveRequests();
46
47     public boolean[] getApplicationStats();
48
49     public void setApplicationStats(int index, boolean value);
50
51     public void setApplicationStatsNumActiveRequests(java.lang.String JavaDoc value);
52
53     public void setHealth(java.lang.String JavaDoc value);
54
55     public void setId(java.lang.String JavaDoc value);
56
57     public int sizeApplicationStats();
58
59     public java.lang.String JavaDoc getApplicationStatsId();
60
61     public void setApplicationStatsNumIdempotentUrlRequests(java.lang.String JavaDoc value);
62
63     public void setApplicationStatsNumTotalRequests(java.lang.String JavaDoc value);
64
65     public java.lang.String JavaDoc getApplicationStatsNumErrorRequests();
66
67     public java.lang.String JavaDoc getApplicationStatsMinResponseTime();
68
69     public int addApplicationStats(boolean value);
70
71     public void setApplicationStatsId(java.lang.String JavaDoc value);
72
73     public void setApplicationStatsAverageResponseTime(java.lang.String JavaDoc value);
74
75     public void setApplicationStatsMinResponseTime(java.lang.String JavaDoc value);
76
77     public void setApplicationStats(boolean[] value);
78
79     public java.util.List JavaDoc fetchApplicationStatsList();
80
81     public java.lang.String JavaDoc getApplicationStatsAverageResponseTime();
82
83     public java.lang.String JavaDoc getApplicationStatsNumIdempotentUrlRequests();
84
85     public java.lang.String JavaDoc getApplicationStatsMaxResponseTime();
86
87     public void setApplicationStatsMaxResponseTime(java.lang.String JavaDoc value);
88
89     public java.lang.String JavaDoc getApplicationStatsNumActiveRequests();
90
91     public java.lang.String JavaDoc getHealth();
92
93     public boolean isApplicationStats(int index);
94
95     public java.lang.String JavaDoc getApplicationStatsNumTotalRequests();
96
97     public java.lang.String JavaDoc getApplicationStatsNumFailoverRequests();
98
99 }
100
Popular Tags