Source Code Cross Referenced for CounterMonitorMBean.java in  » JMX » jfoxmx » javax » management » monitor » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » JMX » jfoxmx » javax.management.monitor 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* JFox, the OpenSource J2EE Application Server
002:         *
003:         * Copyright (C) 2002 huihoo.org
004:         * Distributable under GNU LGPL license
005:         * See the GNU Lesser General Public License for more details.
006:         */
007:
008:        package javax.management.monitor;
009:
010:        import javax.management.ObjectName;
011:
012:        /**
013:         * Exposes the remote management interface of the counter monitor MBean.
014:         *
015:         * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
016:         */
017:
018:        public interface CounterMonitorMBean extends MonitorMBean {
019:
020:            /**
021:             * Gets the derived gauge for the specified MBean.
022:             *
023:             * @param object the MBean for which the derived gauge is to be returned
024:             * @return The derived gauge for the specified MBean if this MBean is in the
025:             *         set of observed MBeans, or <code>null</code> otherwise.
026:             *
027:             * @since JMX 1.2
028:             */
029:            public Number getDerivedGauge(ObjectName object);
030:
031:            /**
032:             * Gets the derived gauge timestamp for the specified MBean.
033:             *
034:             * @param object the MBean for which the derived gauge timestamp is to be returned
035:             * @return The derived gauge timestamp for the specified MBean if this MBean
036:             *         is in the set of observed MBeans, or <code>null</code> otherwise.
037:             *
038:             * @since JMX 1.2
039:             */
040:            public long getDerivedGaugeTimeStamp(ObjectName object);
041:
042:            /**
043:             * Gets the threshold value for the specified MBean.
044:             *
045:             * @param object the MBean for which the threashold value is to be returned
046:             * @return The threshold value for the specified MBean if this MBean
047:             *         is in the set of observed MBeans, or <code>null</code> otherwise.
048:             *
049:             * @since JMX 1.2
050:             *
051:             */
052:            public Number getThreshold(ObjectName object);
053:
054:            /**
055:             * Gets the initial threshold value common to all observed objects.
056:             *
057:             * @return The initial threshold value.
058:             *
059:             * @see #setInitThreshold
060:             *
061:             * @since JMX 1.2
062:             */
063:            public Number getInitThreshold();
064:
065:            /**
066:             * Sets the initial threshold value common to all observed MBeans.
067:             *
068:             * @param value The initial threshold value.
069:             * @exception java.lang.IllegalArgumentException The specified
070:             * threshold is null or the threshold value is less than zero.
071:             *
072:             * @see #getInitThreshold
073:             *
074:             * @since JMX 1.2
075:             */
076:            public void setInitThreshold(Number value)
077:                    throws java.lang.IllegalArgumentException;
078:
079:            /**
080:             * Gets the offset value.
081:             *
082:             * @see #setOffset(Number)
083:             *
084:             * @return The offset value.
085:             */
086:            public Number getOffset();
087:
088:            /**
089:             * Sets the offset value.
090:             *
091:             * @param value The offset value.
092:             * @exception java.lang.IllegalArgumentException The specified
093:             * offset is null or the offset value is less than zero.
094:             *
095:             * @see #getOffset()
096:             */
097:            public void setOffset(Number value)
098:                    throws java.lang.IllegalArgumentException;
099:
100:            /**
101:             * Gets the modulus value.
102:             *
103:             * @return The modulus value.
104:             *
105:             * @see #setModulus
106:             */
107:            public Number getModulus();
108:
109:            /**
110:             * Sets the modulus value.
111:             *
112:             * @param value The modulus value.
113:             * @exception java.lang.IllegalArgumentException The specified
114:             * modulus is null or the modulus value is less than zero.
115:             *
116:             * @see #getModulus
117:             */
118:            public void setModulus(Number value)
119:                    throws java.lang.IllegalArgumentException;
120:
121:            /**
122:             * Gets the notification's on/off switch value.
123:             *
124:             * @return <CODE>true</CODE> if the counter monitor notifies when
125:             * exceeding the threshold, <CODE>false</CODE> otherwise.
126:             *
127:             * @see #setNotify
128:             */
129:            public boolean getNotify();
130:
131:            /**
132:             * Sets the notification's on/off switch value.
133:             *
134:             * @param value The notification's on/off switch value.
135:             *
136:             * @see #getNotify
137:             */
138:            public void setNotify(boolean value);
139:
140:            /**
141:             * Gets the difference mode flag value.
142:             *
143:             * @return <CODE>true</CODE> if the difference mode is used,
144:             * <CODE>false</CODE> otherwise.
145:             *
146:             * @see #setDifferenceMode
147:             */
148:            public boolean getDifferenceMode();
149:
150:            /**
151:             * Sets the difference mode flag value.
152:             *
153:             * @param value The difference mode flag value.
154:             *
155:             * @see #getDifferenceMode
156:             */
157:            public void setDifferenceMode(boolean value);
158:
159:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.