com.sun.jmx.snmp.agent.SnmpMibSubRequest Java Examples

The following examples show how to use com.sun.jmx.snmp.agent.SnmpMibSubRequest. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JvmRTInputArgsTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTInputArgsEntryMBean entry = (JvmRTInputArgsEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}
 
Example #2
Source File: JvmRTClassPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #3
Source File: JvmMemPoolTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmMemPoolEntryMBean entry = (JvmMemPoolEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #4
Source File: JvmRTClassPathTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTClassPathEntryMBean entry = (JvmRTClassPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #5
Source File: JvmRTInputArgsTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTInputArgsEntryMBean entry = (JvmRTInputArgsEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}
 
Example #6
Source File: JvmRTLibraryPathTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTLibraryPathEntryMBean entry = (JvmRTLibraryPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #7
Source File: JvmMemMgrPoolRelTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmMemMgrPoolRelEntryMBean entry = (JvmMemMgrPoolRelEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #8
Source File: JvmRTInputArgsTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTInputArgsEntryMBean entry = (JvmRTInputArgsEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #9
Source File: JvmMemManagerTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmMemManagerEntryMBean entry = (JvmMemManagerEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #10
Source File: JvmRTClassPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTClassPathEntryMBean entry = (JvmRTClassPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}
 
Example #11
Source File: JvmMemManagerTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmMemManagerEntryMBean entry = (JvmMemManagerEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #12
Source File: JvmThreadInstanceTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmThreadInstanceEntryMBean entry = (JvmThreadInstanceEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #13
Source File: JvmThreadInstanceTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmThreadInstanceEntryMBean entry = (JvmThreadInstanceEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}
 
Example #14
Source File: JvmRTInputArgsTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #15
Source File: JvmRTInputArgsTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmRTInputArgsEntryMBean entry = (JvmRTInputArgsEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #16
Source File: JvmMemManagerTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #17
Source File: JvmRTInputArgsTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTInputArgsEntryMBean entry = (JvmRTInputArgsEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #18
Source File: JvmRTInputArgsTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmRTInputArgsEntryMBean entry = (JvmRTInputArgsEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #19
Source File: JvmRTLibraryPathTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmRTLibraryPathEntryMBean entry = (JvmRTLibraryPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #20
Source File: JvmRTInputArgsTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #21
Source File: JvmRTBootClassPathTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmRTBootClassPathEntryMBean entry = (JvmRTBootClassPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #22
Source File: JvmRTBootClassPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #23
Source File: JvmRTBootClassPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTBootClassPathEntryMBean entry = (JvmRTBootClassPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}
 
Example #24
Source File: JvmRTBootClassPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTBootClassPathEntryMBean entry = (JvmRTBootClassPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #25
Source File: JvmMemMgrPoolRelTableMeta.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void check(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmMemMgrPoolRelEntryMBean entry = (JvmMemMgrPoolRelEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.check(req,depth);
    }
}
 
Example #26
Source File: JvmMemPoolTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #27
Source File: JvmMemPoolTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void get(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    JvmMemPoolEntryMBean entry = (JvmMemPoolEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.get(req,depth);
    }
}
 
Example #28
Source File: JvmMemManagerTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmMemManagerEntryMBean entry = (JvmMemManagerEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}
 
Example #29
Source File: JvmRTLibraryPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void createNewEntry(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (factory != null)
        factory.createNewEntry(req, rowOid, depth, this);
    else
        throw new SnmpStatusException(
            SnmpStatusException.snmpRspNoAccess);
}
 
Example #30
Source File: JvmRTLibraryPathTableMeta.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void set(SnmpMibSubRequest req, SnmpOid rowOid, int depth)
    throws SnmpStatusException {
    if (req.getSize() == 0) return;

    JvmRTLibraryPathEntryMBean entry = (JvmRTLibraryPathEntryMBean) getEntry(rowOid);
    synchronized (this) {
        node.setInstance(entry);
        node.set(req,depth);
    }
}