Source Code Cross Referenced for GaugeMonitorMBean.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 gauge monitor MBean.
014:         *
015:         * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
016:         */
017:
018:        public interface GaugeMonitorMBean 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 high threshold value.
044:             *
045:             * @return The high threshold value.
046:             */
047:            public Number getHighThreshold();
048:
049:            /**
050:             * Gets the low threshold value.
051:             *
052:             * @return The low threshold value.
053:             */
054:            public Number getLowThreshold();
055:
056:            /**
057:             * Sets the high and the low threshold values.
058:             *
059:             * @param highValue The high threshold value.
060:             * @param lowValue The low threshold value.
061:             * @exception java.lang.IllegalArgumentException The specified high/low threshold is null
062:             * or the low threshold is greater than the high threshold
063:             * or the high threshold and the low threshold are not of the same type.
064:             */
065:            public void setThresholds(Number highValue, Number lowValue)
066:                    throws java.lang.IllegalArgumentException;
067:
068:            /**
069:             * Gets the high notification's on/off switch value.
070:             *
071:             * @return <CODE>true</CODE> if the gauge monitor notifies when
072:             * exceeding the high threshold, <CODE>false</CODE> otherwise.
073:             *
074:             * @see #setNotifyHigh
075:             */
076:            public boolean getNotifyHigh();
077:
078:            /**
079:             * Sets the high notification's on/off switch value.
080:             *
081:             * @param value The high notification's on/off switch value.
082:             *
083:             * @see #getNotifyHigh
084:             */
085:            public void setNotifyHigh(boolean value);
086:
087:            /**
088:             * Gets the low notification's on/off switch value.
089:             *
090:             * @return <CODE>true</CODE> if the gauge monitor notifies when
091:             * exceeding the low threshold, <CODE>false</CODE> otherwise.
092:             *
093:             * @see #setNotifyLow
094:             */
095:            public boolean getNotifyLow();
096:
097:            /**
098:             * Sets the low notification's on/off switch value.
099:             *
100:             * @param value The low notification's on/off switch value.
101:             *
102:             * @see #getNotifyLow
103:             */
104:            public void setNotifyLow(boolean value);
105:
106:            /**
107:             * Gets the difference mode flag value.
108:             *
109:             * @return <CODE>true</CODE> if the difference mode is used,
110:             * <CODE>false</CODE> otherwise.
111:             *
112:             * @see #setDifferenceMode
113:             */
114:            public boolean getDifferenceMode();
115:
116:            /**
117:             * Sets the difference mode flag value.
118:             *
119:             * @param value The difference mode flag value.
120:             *
121:             * @see #getDifferenceMode
122:             */
123:            public void setDifferenceMode(boolean value);
124:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.