org.snmp4j.security
Class SecurityLevel

java.lang.Object
  extended by org.snmp4j.security.SecurityLevel

public final class SecurityLevel
extends java.lang.Object

The SecurityLevel interface contains enumerated values for the different security levels.

Version:
1.0
Author:
Frank Fock

Field Summary
static int AUTH_NOPRIV
          Authentication and no encryption.
static int AUTH_PRIV
          Authentication and encryption.
static int NOAUTH_NOPRIV
          No authentication and no encryption.
 
Constructor Summary
SecurityLevel()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NOAUTH_NOPRIV

public static final int NOAUTH_NOPRIV
No authentication and no encryption. Anyone can create and read messages with this security level

See Also:
Constant Field Values

AUTH_NOPRIV

public static final int AUTH_NOPRIV
Authentication and no encryption. Only the one with the right authentication key can create messages with this security level, but anyone can read the contents of the message.

See Also:
Constant Field Values

AUTH_PRIV

public static final int AUTH_PRIV
Authentication and encryption. Only the one with the right authentication key can create messages with this security level, and only the one with the right encryption/decryption key can read the contents of the message.

See Also:
Constant Field Values
Constructor Detail

SecurityLevel

public SecurityLevel()

Copyright 2005-2010 Frank Fock (SNMP4J.org)

Copyright © 2011 SNMP4J.org. All Rights Reserved.