com.sun.jmx.snmp.SnmpPduFactoryBER Java Examples

The following examples show how to use com.sun.jmx.snmp.SnmpPduFactoryBER. 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: SnmpAdaptorServer.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #2
Source File: SnmpAdaptorServer.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #3
Source File: SnmpAdaptorServer.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #4
Source File: SnmpAdaptorServer.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #5
Source File: SnmpAdaptorServer.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #6
Source File: SnmpAdaptorServer.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #7
Source File: SnmpAdaptorServer.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #8
Source File: SnmpAdaptorServer.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #9
Source File: SnmpAdaptorServer.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #10
Source File: SnmpAdaptorServer.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #11
Source File: SnmpAdaptorServer.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #12
Source File: SnmpAdaptorServer.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #13
Source File: SnmpAdaptorServer.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #14
Source File: SnmpAdaptorServer.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Common initializations.
 */
private void init(InetAddressAcl acl, int p, InetAddress a) {

    root= new SnmpMibTree();

    // The default Agent is initialized with a SnmpErrorHandlerAgent agent.
    root.setDefaultAgent(new SnmpErrorHandlerAgent());

    // For the trap time, use the time the agent started ...
    //
    startUpTime= java.lang.System.currentTimeMillis();
    maxActiveClientCount = 10;

    // Create the default message factory
    pduFactory = new SnmpPduFactoryBER() ;

    port = p ;
    ipacl = acl ;
    address = a ;

    if ((ipacl == null) && (useAcl == true))
        throw new IllegalArgumentException("ACL object cannot be null") ;

    threadService = new ThreadService(threadNumber);
}
 
Example #15
Source File: SnmpAdaptorServer.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #16
Source File: SnmpAdaptorServer.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #17
Source File: SnmpAdaptorServer.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #18
Source File: SnmpAdaptorServer.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #19
Source File: SnmpAdaptorServer.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #20
Source File: SnmpAdaptorServer.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #21
Source File: SnmpAdaptorServer.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #22
Source File: SnmpAdaptorServer.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #23
Source File: SnmpAdaptorServer.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #24
Source File: SnmpAdaptorServer.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #25
Source File: SnmpAdaptorServer.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #26
Source File: SnmpAdaptorServer.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #27
Source File: SnmpAdaptorServer.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}
 
Example #28
Source File: SnmpAdaptorServer.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the message factory of this SNMP protocol adaptor.
 *
 * @param factory The factory object (null means the default factory).
 */
@Override
public void setPduFactory(SnmpPduFactory factory) {
    if (factory == null)
        pduFactory = new SnmpPduFactoryBER() ;
    else
        pduFactory = factory ;
}