Uses of Class
org.snmp4j.security.UsmUserEntry
-
Packages that use UsmUserEntry Package Description org.snmp4j Provides classes and interfaces for creating, sending, and receiving SNMP messages.org.snmp4j.event Provides classes and interfaces for SNMP4J event processing.org.snmp4j.security Provides classes and interfaces for authentication and privacy of SNMP(v3) messages. -
-
Uses of UsmUserEntry in org.snmp4j
Methods in org.snmp4j that return UsmUserEntry Modifier and Type Method Description UsmUserEntrySnmp. createLocalizedUsmUserEntry(byte[] engineID, OctetString securityName, OID authProtocol, OctetString authPassword, OID privProtocol, OctetString privPassword)Create and return aUsmUserEntrywith localized authentication and privacy keys from the provided authentication and privacy passwords.Methods in org.snmp4j with parameters of type UsmUserEntry Modifier and Type Method Description SecurityLevelSnmp. setLocalizedUserCredentials(DirectUserTarget<?> directUserTarget, UsmUserEntry localizedUserCredentials)Sets the user's security name and authentication/privacy keys and protocols on the suppliedDirectUserTargetand returns the maximumSecurityLevelit can be used with. -
Uses of UsmUserEntry in org.snmp4j.event
Methods in org.snmp4j.event that return UsmUserEntry Modifier and Type Method Description UsmUserEntryUsmUserEvent. getUser()Get the modified entry of theUsmUserTable.Constructors in org.snmp4j.event with parameters of type UsmUserEntry Constructor Description UsmUserEvent(SecurityModel source, UsmUserEntry changedEntry, int type)Construct a UsmUserEvent. -
Uses of UsmUserEntry in org.snmp4j.security
Methods in org.snmp4j.security that return UsmUserEntry Modifier and Type Method Description UsmUserEntryUSM. addLocalizedUser(byte[] engineID, OctetString userName, OID authProtocol, byte[] authKey, OID privProtocol, byte[] privKey)Adds a localized user to the USM.protected UsmUserEntryUSM. addLocalizedUsmUserEntry(OctetString engineID, OctetString securityName, UsmUserEntry entry)UsmUserEntryUsmUserTable. addUser(UsmUserEntry user)UsmUserEntryUSM. getUser(OctetString engineID, OctetString securityName)Looks up aUsmUserEntryby an engine ID and security name.UsmUserEntryUsmUserTable. getUser(OctetString securityName)UsmUserEntryUsmUserTable. getUser(OctetString engineID, OctetString securityName)UsmUserEntryUsmUserTable. removeUser(OctetString engineID, OctetString securityName)Methods in org.snmp4j.security that return types with arguments of type UsmUserEntry Modifier and Type Method Description java.util.List<UsmUserEntry>UsmUserTable. getUserEntries()java.util.List<UsmUserEntry>UsmUserTable. getUserEntries(OctetString userName)Gets all user entries with the supplied user name.java.util.List<UsmUserEntry>UsmUserTable. removeAllUsers(OctetString securityName, OctetString engineID)Methods in org.snmp4j.security with parameters of type UsmUserEntry Modifier and Type Method Description protected UsmUserEntryUSM. addLocalizedUsmUserEntry(OctetString engineID, OctetString securityName, UsmUserEntry entry)UsmUserEntryUsmUserTable. addUser(UsmUserEntry user)voidUSM. addUsmUserEntry(UsmUserEntry usmUserEntry)Adds an USM user to the internal user name table.intUsmUserEntry. compareTo(UsmUserEntry other)Compares this user entry with another one by engine ID then by their user names.voidUSM. updateUser(UsmUserEntry entry)Updates the USM user entry with the same engine ID and user name as the supplied instance and fires an appropriateUsmUserEvent.Method parameters in org.snmp4j.security with type arguments of type UsmUserEntry Modifier and Type Method Description voidUsmUserTable. setUsers(java.util.Collection<UsmUserEntry> c)Constructors in org.snmp4j.security with parameters of type UsmUserEntry Constructor Description UsmUserKey(UsmUserEntry entry)
-