001: /*
002: * Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: package sun.management.snmp.jvmmib;
027:
028: //
029: // Generated by mibgen version 5.0 (06/02/03) when compiling JVM-MANAGEMENT-MIB in standard metadata mode.
030: //
031:
032: // jmx imports
033: //
034: import com.sun.jmx.snmp.SnmpStatusException;
035:
036: /**
037: * This interface is used for representing the remote management interface for the "JvmMemory" MBean.
038: */
039: public interface JvmMemoryMBean {
040:
041: /**
042: * Getter for the "JvmMemoryNonHeapMaxSize" variable.
043: */
044: public Long getJvmMemoryNonHeapMaxSize() throws SnmpStatusException;
045:
046: /**
047: * Getter for the "JvmMemoryNonHeapCommitted" variable.
048: */
049: public Long getJvmMemoryNonHeapCommitted()
050: throws SnmpStatusException;
051:
052: /**
053: * Getter for the "JvmMemoryNonHeapUsed" variable.
054: */
055: public Long getJvmMemoryNonHeapUsed() throws SnmpStatusException;
056:
057: /**
058: * Getter for the "JvmMemoryNonHeapInitSize" variable.
059: */
060: public Long getJvmMemoryNonHeapInitSize()
061: throws SnmpStatusException;
062:
063: /**
064: * Getter for the "JvmMemoryHeapMaxSize" variable.
065: */
066: public Long getJvmMemoryHeapMaxSize() throws SnmpStatusException;
067:
068: /**
069: * Getter for the "JvmMemoryHeapCommitted" variable.
070: */
071: public Long getJvmMemoryHeapCommitted() throws SnmpStatusException;
072:
073: /**
074: * Getter for the "JvmMemoryGCCall" variable.
075: */
076: public EnumJvmMemoryGCCall getJvmMemoryGCCall()
077: throws SnmpStatusException;
078:
079: /**
080: * Setter for the "JvmMemoryGCCall" variable.
081: */
082: public void setJvmMemoryGCCall(EnumJvmMemoryGCCall x)
083: throws SnmpStatusException;
084:
085: /**
086: * Checker for the "JvmMemoryGCCall" variable.
087: */
088: public void checkJvmMemoryGCCall(EnumJvmMemoryGCCall x)
089: throws SnmpStatusException;
090:
091: /**
092: * Getter for the "JvmMemoryHeapUsed" variable.
093: */
094: public Long getJvmMemoryHeapUsed() throws SnmpStatusException;
095:
096: /**
097: * Getter for the "JvmMemoryGCVerboseLevel" variable.
098: */
099: public EnumJvmMemoryGCVerboseLevel getJvmMemoryGCVerboseLevel()
100: throws SnmpStatusException;
101:
102: /**
103: * Setter for the "JvmMemoryGCVerboseLevel" variable.
104: */
105: public void setJvmMemoryGCVerboseLevel(EnumJvmMemoryGCVerboseLevel x)
106: throws SnmpStatusException;
107:
108: /**
109: * Checker for the "JvmMemoryGCVerboseLevel" variable.
110: */
111: public void checkJvmMemoryGCVerboseLevel(
112: EnumJvmMemoryGCVerboseLevel x) throws SnmpStatusException;
113:
114: /**
115: * Getter for the "JvmMemoryHeapInitSize" variable.
116: */
117: public Long getJvmMemoryHeapInitSize() throws SnmpStatusException;
118:
119: /**
120: * Getter for the "JvmMemoryPendingFinalCount" variable.
121: */
122: public Long getJvmMemoryPendingFinalCount()
123: throws SnmpStatusException;
124:
125: }
|