- GAUGE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP Type Constants.
- genEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpServer
- generate the events to the listeners
- genEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Generates the events to the listeners
- genEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- generate the events to the listeners
- genEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Generate the response event to the listeners
- genEvent(SnmpPDU, SnmpServer) -
Method in class com.adventnet.snmp.beans.SnmpServer
- generate the events to the listeners
- genMsgID() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- This number is unique number that is generated for this JVM.
- genReqID() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- This number is unique number that is generated for this JVM.
- genTableEvent(SnmpTableEvent) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Generate the table events to the listeners.
- genTimeoutEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpServer
- generate the events to the listeners
- genTimeoutEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Generates the events to the listeners
- genTimeoutEvent(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Generate the timeout events to the listeners
- GET -
Static variable in class com.adventnet.snmp.beans.RequestEvent
- Constant for Get Request
- GET_REQ_MSG -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for SNMP get PDU type.
- GET_RSP_MSG -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for SNMP response PDU type.
- get(SnmpOID) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SnmpPDU pdu = new SnmpPDU();
pdu.addNull(oid);
pdu.setCommand(SnmpAPI.GET_REQ_MSG);
SnmpPDU response_pdu = snmpSession.syncSend(pdu);
SnmpVar var = null;
if(response_pdu != null)
{
var = response_pdu.getVariable(0);
}
- get(String) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SnmpPDU pdu = new SnmpPDU();
pdu.addNull(new SnmpOID(oidString));
pdu.setCommand(SnmpAPI.GET_REQ_MSG);
SnmpPDU response_pdu = snmpSession.syncSend(pdu);
SnmpVar var = null;
if(response_pdu != null)
{
var = response_pdu.getVariable(0);
}
- getAbsoluteCounters() -
Method in class com.adventnet.snmp.beans.SnmpPoller
- To get whether the value returned by the poller will be the absolute value or
the difference between successive counters.
- getAccess() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the access value for this node.
- getAccess() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0. Instead you can use getAccess() in ACVariation class.
- getAccess() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Gets the implemented ACCESS value for this Variation.
- getAccessControlModel(int) -
Method in class com.adventnet.snmp.snmp2.ACMProvider
- Returns the AccessControlModel Object which is registered.
- getAccessEntries() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessEntry
- Returns an vector of VacmAccessEntries maintained by this class.
- getACModules() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the acModules in this macro.
- getACMProvider() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the Access Control Provider maintained bu this SnmpAPI.
- getACVariations() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Gets a Vector of ACVariation implemented by the AGENT-CAPABILITIES module.
- getAddress() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)SnmpPDU.getProtocolOptions();
InetAddress address = opt.getRemoteAddress();
- getAddress() -
Method in class com.adventnet.management.transport.TcpSessionTransportImpl
- Returns the socket address of the TCP socket.
- getAgentAddr() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the address of object generating trap in String foramt.
- getAgentAddress() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets address of object generating trap.
- getAgentAddress() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the address of the SNMP agent generating trap.
- getAgentCapabilities() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the various clauses in AGENT-CAPABILITIES as a Vector of AgentCapabilitiesModule
- getAgentCapabilities() -
Method in class com.adventnet.snmp.mibs.MibModule
- Deprecated. since 4.0 . Instead you can use the method getDefinedAgentCapabilities
- getAgentCapabilities(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Returns the AgentCapabilities object present in this module.
- getAllColumnNodes() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets all the column mib nodes available in the snmpTable.
- getAPI() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
-
- getApplet() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the applet instance.
- getAppletContext() -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Gets a handler to the applet's context.
- getArchiveDirectory() -
Method in class com.adventnet.afp.log.FileLogWriter
- This will return the Archive directory.The Archive directory mentioned
in the logging configuration file will be returned.
- getArchiveStatus() -
Method in class com.adventnet.afp.log.FileLogWriter
- This will return the Archive status.The current Archive status will be retreived.
- getASNParser() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
-
- getAttemptComplete() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Returns if the splitting pdu is enabled to get the complete data by
splitting the varbinds into multiple request.
- getAttemptPartial() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Returns the boolean state of whether this target will try to get
partial data from an agent if the request is a multiple variable request.
- getAttemptPartial() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Deprecated. SnmpRequestServer cannot get the partial data. It is
specifically for SnmpTarget bean which does synchronous comm..
- getAugments() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the augmented table entry.
- getAuthKey() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the authentication key.
- getAuthParams() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the auth params.
- getAuthPassword() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the authentication password.
- getAuthPassword() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 AuthPassword
- getAuthPassword() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 AuthPassword
- getAuthPassword() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets authentication password.
- getAuthProtocol() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Returns the authentication Protocol used.
- getAuthProtocol() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 AuthProtocol
- getAuthProtocol() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 AuthProtocol
- getAuthProtocol() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the Authentication Protocol.
- getBeanDescriptor() -
Method in class com.adventnet.snmp.beans.SnmpTargetBeanInfo
- This will be the customizer for this bean
- getBeanDescriptor() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo
-
- getBeanDescriptor() -
Method in class com.adventnet.snmp.beans.SnmpRequestServerBeanInfo
- This will return the customiser for this bean
- getBookMark() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- This method returns the bookmark value.
- getBufferSize() -
Method in class com.adventnet.afp.log.FileLogWriter
- The buffer size is retreived.Since the buffer size can be changed at runtime, this method
returns the currently modified size of the buffer.
- GETBULK -
Static variable in class com.adventnet.snmp.beans.RequestEvent
- Constant for GETBULK Request
- GETBULK_REQ_MSG -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for SNMP V2 Get Bulk PDU type.
- getCause() -
Method in class com.adventnet.afp.log.LogException
- This method returns the exception stack trace.
- getCellValue(String, int, int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To get the value for the cell specified by the row and column index.
- getCharacterEncoding() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the Character encoding of the String values.
- getCharacterEncoding() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Get the Character Encoding being used.
- getCharacterEncoding() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Get the Character Encoding being used.
- getChecks(byte) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Used to get the checks available for a particular parsingLevel.
- getChild(int) -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the child node corresponding to the particular sub-id.
- getChild(long) -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the child node corresponding to the suboid.
- getChildList() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the child nodes.
- getClassName() -
Method in class com.adventnet.afp.log.LoggerProperties
- Gets the Logger implementation class that is being used by the Logger.
- getClassName() -
Method in class com.adventnet.afp.log.LogWriterProperties
- The
getClassName
method returns the current LogWriterClassName.
- getClassName(int) -
Method in class com.adventnet.snmp.snmp2.ACMProvider
- Returns the SnmpACM class names registered.
- getClassNames(int) -
Method in class com.adventnet.snmp.snmp2.SecurityProvider
- Returns the SecurityModelTable and SecurityModelEntry class names
as an array of strings.
- getClientID() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- This method will return the id for the source which sent this pdu
- getCodeBase() -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Gets the base URL.
- getColor() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- This method is used to get the default color for
different value of severity
- getColumn() -
Method in class com.adventnet.snmp.beans.SnmpTableEvent
- Gets the columns that are changed.
- getColumn(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns a string array of data for a column in the Table,represented by
the index.
- getColumn(String) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns a string array of data for a column in the Table, represented
by the column name.Set the tableOID using setTableOID().
- getColumnClass(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the class to be used as renderer and editor for the column.
- getColumnCount() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the number of columns in the table corresponding to the table OID already set.
- getColumnIndex(String) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the index value of the column name specified.
- getColumnMibNode(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To Get the MibNode corresponding to the table column specified by the column index
- getColumnMibNodes() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the mib nodes for the columns in the table.
- getColumnName(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the name of the column specified by the column index.
- getColumnNo() -
Method in class com.adventnet.snmp.mibs.ErrorObject
- Returns the line number of the error.
- getColumns() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Returns vector of names of columns in the table.
- getCommand() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets command type of this PDU.
- getCommonAncestorWith(MibNode) -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the common ancestor node for this node and the specified node.
- getCommunity() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets community for outgoing SNMPv1 and SNMPv2c requests.
- getCommunity() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets community string received/sent.
- getCommunity() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target Community
- getCommunity() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target Community
- getCommunity() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMP Community.
- getCommunity() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets community string received/sent
- getCommunityEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
- Gets the SnmpCommunityEntry associated with the specified communityName.
- getCommunityIndex() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- This method gets the community index of this entry.
- getCommunityName() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunityName value associated with this object.
- getCommunityTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Deprecated. use the following instead
getSecurityProvider().getTable(1); // where 1 stands for v1 security model.
- getCompleteResponse() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the complete data from the agent by splitting the varbinds into multiple
requests.This can set if request pdu is very big.
- getConnection() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the database connection instance corresponding to this
SnmpAPI instance.
- getConnectionListener() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- To get reference to the ConnectionListener object.
- getContactinfo() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the value of CONTACT-INFO clause in MODULE-IDENTITY macro
- getContactInfo() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Returns the value of CONTACT-INFO clause in this MODULE-IDENTITY macro
- getContextEngineID() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunityContextEngineID value associated with this object.
- getcontextID() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Deprecated. Replaced with getContextID()
- getContextID() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets context ID sent/received with this PDU.
- getContextID() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 contextID.
- getContextID() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 contextID
- getContextID() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMP V3 contextID
- getContextMatch() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the VacmAccessContextMatch value.
- getContextName() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets the context name associated with the SNMPv3 message.
- getContextName() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the context name sent/received with this PDU.
- getContextName() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunityContextName value associated with this object.
- getContextName() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmContextEntry
- Get the VacmContextName associated with this object.
- getContextName() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- get the SNMP V3 Context name
- getContextName() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 Context name
- getContextName() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMP V3 Context name
- getContextPrefix() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the contextPrefix value.
- getContextTable() -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
- Gets the VacmContextTable.
- getCreationObjects() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Returns the value of CREATION-REQUIRES field for this Variation.
- getCreationRequires() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0. Instead you can use getCreationObjects() in ACVariation class.
- getCurrentPage() -
Method in class com.adventnet.snmp.beans.ClippedTable
- get currentPage
- getCustomEditor() -
Method in class com.adventnet.snmp.beans.ObjectIDEditor
-
- getCustomEditor() -
Method in class com.adventnet.snmp.beans.MibNamesEditor
-
- getCustomProperties() -
Method in class com.adventnet.afp.log.LoggerProperties
- Returns custom properties that have been set for the Logger.
- getCustomProperties() -
Method in class com.adventnet.afp.log.LogWriterProperties
- The
getCustomProperties
method is used to get all the Custom properties of a LogWriter.
- getCustomProperty(String) -
Method in class com.adventnet.afp.log.LoggerProperties
- The
getCustomProperty
method is used to retreive a custom property that
has been set for the Logger.
- getCustomProperty(String) -
Method in class com.adventnet.afp.log.LogWriterProperties
getCustomProperty
method is used to retreive a Custom property.
- getData() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets encoded data to be sent, or received.
- getData() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- Returns the data.
- getDatabaseName() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the name of the Database.
- getDataType() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the datatype in which the table data will be returned.
- getDebug() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Defines whether debugging output is being generated.
- getDebug() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns true if debug mode is enabled and false otherwise
- getDebug() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To check if Debug mode is enabled or not
- getDecryptionErrors() -
Static method in class com.adventnet.snmp.snmp2.usm.USMStats
- Returns the decryptionErrors count.
- getDefinedAgentCapabilities() -
Method in class com.adventnet.snmp.mibs.MibModule
- Returns the Enumeration of AgentCapabilities present in this module.
- getDefinedModuleCompliances() -
Method in class com.adventnet.snmp.mibs.MibModule
- Returns the ModuleCompliances present in this module.
- getDefinedNodes() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the nodes defined in this module using this method.
- getDefinedNotificationGroups() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the NotificationGroup objects defined in this module.
- getDefinedNotifications() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the NOTIFICATION-TYPE objects defined in this module.
- getDefinedNotificationTypes() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the NotificationType objects defined in this module.
- getDefinedObjectGroups() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the ObjectGroup objects defined in this module.
- getDefinedTCs() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the TEXTUAL-CONVENTIONS defined in this module.
- getDefinedTraps() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets all the TRAP-TYPE objects defined in this MIB module.
- getDefval() -
Method in class com.adventnet.snmp.mibs.MibNode
- The defval for this node can be obtained using this method.
- getDefval() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0. Instead you can use getDefVal() in ACVariation class.
- getDefVal() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Returns the value of the DEFVAL field for this Variation.
- getDescription() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the DESCRIPTION string for this OBJECT-GROUP macro.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the value of the DESCRIPTION clause for this ModuleCompliance.
- getDescription() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the description for this node
- getDescription() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the DESCRIPTION string for this NotififcationGroup object.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Gets the DESCRIPTION string for this OBJECT-GROUP macro.
- getDescription() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Returns the description of the syntax.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Gets the DESCRIPTION string for this Variation.
- getDescription() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the value of the DESCRIPTION clause.
- getDescription() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the DESCRIPTION string for this NotififcationType object.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gets the description for this MODULE-IDENTITY macro.
- getDigest(int, byte[], byte[]) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Returns the USMUserEntry.MD5_AUTH or USMUserEntry.SHA_AUTH Digest.
- getDigestImpl(int) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Returns the MessageDigest Implementation.
- getDisplayHint() -
Method in class com.adventnet.snmp.mibs.MibTC
- Gets the DISPLAY-HINT field in this TC.
- getDisplayName() -
Method in class com.adventnet.afp.log.LoggerImpl
- To get the display name of the Logger.
- getDocumentBase() -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Gets the document URL.
- getEncodedLength(SnmpSession) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Returns the length of the encoded pdu.
- getEngineBoots() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Returns the engine boots value of the corresponding SNMP entity.
- GetEngineBootsSerializeFileName() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the fileName into which the SNMPv3 engineBoots are to be stored
so that they are persistant.
- getEngineEntry() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the corresponding SnmpEngineEntry reference.
- getEngineID() -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns the engineID of this SnmpEngine.
- getEngineID() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Returns the engineid of the coresponding Snmp entity.
- getEngineID() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns, the engineID of this SnmpEngine.
- getEngineID() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the Engine identifier associated with the SNMP engine.
- getEngineID() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 engineID value for v3
- getEngineName() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Returns the engineName of the corresponding Snmp entity
when Independent transport provider is used.
- getEngineTime() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Gets the engine time of the corresponding Snmp entity.
- getEnterprise() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the enterprise OID.
- getEnterprise() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the trap enterprise OID.
- getEnterprise() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the enterprise value for this trap.
- getEnterpriseString() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the enterprise name of this trap.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyTable
- Gets the SnmpNotifyEntry associated with the specified key.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Gets the SnmpNotifyFilterProfileEntry associated with the specified key.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtTable
- Returns the SnmpTargetAddrExtEntry object corresponding to the
particular targetAddrName from the list of SnmpTargetAddrExtEntry
objects.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
- Gets the SnmpCommunityEntry associated with the specified key.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessTable
- Returns the VacmGroupAccessEntry object corresponding to the
groupName specified.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmContextTable
- Returns the VacmContextEntry from the list of VacmContextEntry Objects
corresponding to the context name specified.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeTable
- Returns the VacmViewTreeentry corresponding to the particular
familyName specified.
- getEntry(byte[], byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Returns the USMUserEntry corresponding to the username and
engineID.
- getEntry(byte[], int[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable
- Gets the SnmpNotifyFilterEntry associated with the specified key.
- getEntry(int, byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupTable
- Returns the VacmGroupEntry object corresponding to the
particular securityModel and securityName.
- getEntry(Object) -
Method in class com.adventnet.snmp.snmp2.SecurityModelTable
- Returns a particular SecurityModel entry from the list of
SecurityModel entries based on the keys .
- getEntry(Object) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable
- Gets the SnmpNotifyFilterEntry associated with the specified key.
- getEntry(Object) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyTable
- Gets the SnmpNotifyEntry associated with the specified key.
- getEntry(Object) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Gets the SnmpNotifyFilterProfileEntry associated with the specified key.
- getEntry(Object) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
- Gets the SnmpCommunityEntry associated with the specified key.
- getEntry(Object) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Returns, the SecurityModelEntry for the particular 'key' that
is given as an argument.
- getEntry(String, int) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineTable
- Returns the SnmpEngineEntry object corresponding to the particular
host and port from the list SnmpEngineEntry objects.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SecurityModelTable
- Returns an enumeration of all the SecurityModelTable objects maintaied
in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable
- Returns an enumeration of all the SnmpNotifyFilterEntry objects maintained
in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyTable
- Returns an enumeration of all the SnmpNotifyEntry objects maintained
in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Returns an enumeration of all the SnmpNotifyFilterProfileEntry
objects maintained in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtTable
- Returns an enumeration of all the SnmpTargetAddrExtEntry objects
maintaied in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineTable
- Returns an enumeration of all the SnmpEngineEntry objects maintained.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
- Returns an enumeration of all the SnmpCommunityEntry objects maintained
in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Returns an enumeration of all the USMUserEntry objects maintained
in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupTable
- Returns an enumeration of all the VacmGroupEntry Objects
maintained in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessTable
- Returns an Enumeration of all the VacmGroupAccessEntry objects
maintained in this class.
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmContextTable
- Returns an enumeration of the VacmContext entries
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeTable
- Returns an enumeration of all the VacmViewTreeEntry objects
maintained by this class.
- getEnumint() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gets the values for each of the enumerated integer values
- getEnumlabels() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gets the labels for each of the enumerated integer values
- getEquivname() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gets the equivalent SNMP type name.
- getErrindex() -
Method in class com.adventnet.snmp.snmp2.SnmpVarBind
- Return error in variable binding in response pdu.
- getErrindex() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets error index of this PDU.
- getError() -
Method in class com.adventnet.snmp.snmp2.SnmpVar
- Used only by SnmpNULL at present to store the error value in
case of snmpv2 response PDUs.
- getError() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets error information as a String, with offending varbind if any.
- getError() -
Method in class com.adventnet.snmp.mibs.ErrorObject
- Returns the specific error message.
- getErrorCode() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the error code for the last request.
- getErrorCode() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the error code from the last request.
- getErrorCode() -
Method in class com.adventnet.snmp.mibs.MibErrorMessages
- Returns the error code.
- getErrorIndex() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- To get the error index corresponding to the errored oid in the pdu.
- getErrorMessage() -
Method in class com.adventnet.snmp.mibs.MibErrorMessages
- Returns the error message.
- getErrorMessages(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Returns Vector of MibErrorMessages object for the module specified.
- getErrorModuleNames() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Returns the names of modules which are having parsing errors.
- getErrorObjects() -
Method in class com.adventnet.snmp.mibs.MibErrorMessages
- Returns a Vector of ErrorObjects.
- getErrorResult() -
Method in class com.adventnet.snmp.beans.SnmpResultObject
- This will return a Hashtable which will contain a list of elements corresponding to the
errored varbinds.
- getErrorResultString(SnmpPDU) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the error string associated with the response PDU
- getErrorString() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the error string for the request sent.
- getErrorString() -
Method in class com.adventnet.snmp.beans.ResultEvent
- Get the error string reported by the event generator.
- getErrorString() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the error string from the last request.
- getErrorString() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Gets the error string incase the SnmpEngineID discovery and the
time synchronization was unsuccessful.
- getErrorString(int) -
Static method in class com.adventnet.snmp.beans.ErrorMessages
- Method to get the error string corresponding to the particular
error code value.
- getErrorString(SnmpPDU) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gives a detailed error information on the PDU using information from the loaded MIBs.
- getErrstat() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets error status of this PDU.
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTargetBeanInfo
- return the event set descriptors
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo
- return the event set descriptors
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.NotificationAdaptorBeanInfo
- returns the event set descriptors
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpRequestServerBeanInfo
- this will return the EventSetDescriptors for this bean
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTableBeanInfo
- return the event set descriptors
- getExceptionCode() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the exception code for the last request.
- getExternalIndices() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the external indices present in the table entry
- getFailedRequestID() -
Method in class com.adventnet.snmp.beans.ResultEvent
- Returns the request ID for failed requests, which may be necessary
to track failed requests.
- getFamilyEntries() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeEntry
- Returns an Vector of VacmFamilyEntry maintained by this class.
- getFamilyMask() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Get the vacmViewTreeFamilyMask value.
- getFamilyStatus() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Get the vacmViewTreeFamilyStatus value.
- getFamilyStorageType() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Get the StorageType associated with this VacmFamilyEntry
- getFamilySubTree() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Get the vacmViewTreeFamilySubtree value.
- getFamilyType() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Get the vacmViewTreeFamilyType value.
- getFamilyViewName() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeEntry
- Get the FamilyViewName associated with this object.
- getFamilyViewName() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Get the vacmViewTreeFamilyViewName value.
- getFilename() -
Method in class com.adventnet.snmp.mibs.MibModule
- Deprecated. since 2.1 . Instead you can use the method getFileName()
- getFileName() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the filename of this module.
- getFileName() -
Method in class com.adventnet.afp.log.FileLogWriter
- This will return the log file name .
- getFilterMask() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Retrieves the snmpNotifyFilterMask value associated with this object.
- getFilterProfileName() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Retrieves the snmpNotifyFilterProfileName value associated with
this object.
- getFilterProfileName() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Gets the SnmpFilterProfileName associated with this object.
- getFilterSubTree() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Gets the SnmpFilterSubTree associated with this object.
- getFilterType() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Retrieves the snmpNotifyFilterType value associated with this object.
- getFirstRow() -
Method in class com.adventnet.snmp.beans.SnmpTableEvent
- Returns the starting index of the rows changed.
- getFlushMode() -
Method in class com.adventnet.afp.log.FileLogWriter
- Used to get the flush mode on which this instance is operating.
- getFont() -
Static method in class com.adventnet.utils.SnmpUIUtils
- Returns the default font.
- getGroup() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns a Vector of GROUP fields in MODULE-COMPLIANCE
- getGroupAccessTable() -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
- Gets the VacmGroupAccessTable.
- getGroupDescr(String) -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns the description for the given group name.
- getGroupDescription() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns a Vector of the DESCRIPTION fields under GROUP clause in MODULE-COMPLIANCE
- getGroupName() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessEntry
- Get the VacmGroupName associated with this object.
- getGroups() -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns a Vector of groups defined in this ModuleCompliance Module.
- getGroupTable() -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
- Gets the VacmGroupTable.
- getHashKey() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Retrieve the hash key for this entry.
- getHashLength(int) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Returns the length of the hash associated with the protocol.
- getHashTableEntry(String, int) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Returns, the Vector containing list of USMUserEntry objects
corresponding to a particular SnmpV3 entity.
- getHoles() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the index of the not-implemented columns.Holes are the columns that are not
defined in the agent.
- getHoles() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the index of the not-implemented columns.Holes are the columns
that are not defined by the agent.
- getHostAddress(String) -
Method in class com.adventnet.snmp.beans.SnmpServer
- To return the ip address as String for the given host name.
- getHostAddress(String, int) -
Method in class com.adventnet.snmp.snmp2.SASClient
- The ip address lookup method is for applet clients.
- getHostName() -
Method in class com.adventnet.management.transport.TcpSessionTransportImpl
- Returns the hostname of the TCP socket.
- getHostName(String, int) -
Method in class com.adventnet.snmp.snmp2.SASClient
- The name lookup method is for applet clients.
- getIcon(int) -
Method in class com.adventnet.snmp.beans.SnmpTargetBeanInfo
- this will return the image to be displayed for this bean
- getIcon(int) -
Method in class com.adventnet.snmp.beans.SnmpPollerBeanInfo
- this will return image to be displayed for this SnmpPoller Bean
- getIcon(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo
- this will return the image to be displayed for this bean
- getIcon(int) -
Method in class com.adventnet.snmp.beans.NotificationAdaptorBeanInfo
- returns the image to be displayed for the bean in Builder
- getIcon(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServerBeanInfo
- this will return the image to be displayed for this bean
- getIcon(int) -
Method in class com.adventnet.snmp.beans.SnmpTableBeanInfo
- this will return the image to be displayed for this bean
- getIgnoreSpecificControlCodes() -
Method in class com.adventnet.snmp.beans.SnmpServer
- To get the value determining whether the new-line characters,
tabs and carriage returns are printed or their hex values.
- getIgnoreSpecificControlCodes() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the value determining whether the new-line characters,
tabs and carriage returns are printed or their hex values.
- getIgnoreSpecificControlCodes() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Used to get the value determining whether the new-line characters,
tabs and carriage returns are printed or their hex values
- getImpliedNode() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the implied node name present in the INDEX list of this MIB node.
- getImportedModuleName() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the name of the module from where this node is imported.
- getImportedModules() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the names of the modules imported by this module.
- getImports() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the imported elements in the MIB.
- getImportsParsingLevel() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Returns the parsingLevel for the dependency MIB files.
- getIncludes() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Gets the String containing the groups supported by this.
- getIncrement(long) -
Method in class com.adventnet.snmp.snmp2.SnmpCounter
- Gets the (positive) increment of this Counter variable over a long.
- getIncrement(SnmpCounter) -
Method in class com.adventnet.snmp.snmp2.SnmpCounter
- Gets the (positive) increment of this Counter variable over another.
- getIndex() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- Returns the message index value.
- getIndexes(MibOperations) -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the indexes as a Vector of MibNodes.
- getIndexMibNodes() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the Mibnodes for the indices in Table
- getIndexNames() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the names of the indices in the table.
- getIndexNames() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the index names defined for this node.
- getIndices() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the indices of the SnmpTable.
- getInstance() -
Static method in class com.adventnet.afp.log.LogFactory
- Used to get the reference of LogFactory.
- getInstanceName() -
Method in class com.adventnet.afp.log.AbstractLogger
- To get the Instance Name of the Logger by which it is known.
- getInstanceName() -
Method in class com.adventnet.afp.log.LoggerProperties
- Method to get the LoggerInstanceName.
- getInstanceName() -
Method in interface com.adventnet.afp.log.Logger
- The
getLoggerInstanceName
method is used to get the LoggerInstanceName of the Logger.
- getInstanceName() -
Method in class com.adventnet.afp.log.LogWriterProperties
- The
getInstanceName
method returns the current LogWriterInstanceName.
- getInstanceName() -
Method in class com.adventnet.afp.log.AbstractLogWriter
- This method will return the log writer instance .
- getInstanceName() -
Method in interface com.adventnet.afp.log.LogWriter
- Method to get the instance name.
- getInstanceStr(int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- used to display the index value of the selected row in table
- getInstanceString(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the Instance portion of OID as a String.
- getInstanceString(SnmpOID, MibNode) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the Instance portion of OID as a String.
- getInt(String) -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gets the int value of the label argument.
- getIsAugmented() -
Method in class com.adventnet.snmp.mibs.MibNode
- Used to know whether the entry node contains the AUGMENTS clause.
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Returns the key associated with this SnmpNotifyFilterProfileEntry
- getKey() -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns an Object which is interpretted as a key to uniquely
identify this entry in the SecurityModelTable.
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Returns the key associated with this SnmpNotifyEntry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Retrieves the key for this targetAddrExtEntry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Returns the key associated with this SnmpNotifyFilterEntry
- getKey() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns the key associated with this SnmpCommunityEntry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieve the hash key for this user entry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessEntry
- Retrive the key for this VacmGroupAccessEntry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Retrieve the key for this vacm Group object.
- getKey() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeEntry
- Retrive the Key for this VacmViewTreeEntry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmContextEntry
- Retrive the key for this VacmContextEntry.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Retrieves the key corresponding to the snmpTargetParamsName
specified as parameter.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Retrieves the key corresponding to the snmpNotifyName specified as
parameter.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Retrieves the key for this address Name object.
- getKey(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns the key as the String value of this index value.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessEntry
- Retrive the key for this VacmGroupAccessEntry.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeEntry
- Retrive the Key for this VacmViewTreeEntry.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.vacm.VacmContextEntry
- Retrive the key for this context entry.
- getKey(byte[], byte[]) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieve the key for this user object.
- getKey(byte[], int[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Retrieves the key corresponding to the given snmpNotifyFilterProfileName
and snmpNotifyFilterSubTree.
- getKey(int, boolean, int, int, byte[], byte[], byte[]) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Gives the new key corresponding to the keyChange value provided
- getKey(int, byte[]) -
Static method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Retrieve the key for this vacm Group object.
- getKey(String, int, byte[]) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Retrieves the Hash key associated with the given host,
port and userName.
- getKeyChange(int, boolean, int, int, byte[], byte[], byte[]) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Returns the keyChange value required for a key change operation.
- getKeyLength(int) -
Static method in class com.adventnet.snmp.snmp2.usm.USMUtils
- Returns the key Length associated with the protocol
- getLabel() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the name of this MIB Node.
- getLabel(int) -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gets the label corresponding to the integer value argument.
- getLastRow() -
Method in class com.adventnet.snmp.beans.SnmpTableEvent
- Returns the last index of the rows changed.
- getLastupdated() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the value of the LAST-UPDATED clause in MODULE-IDENTITY macro
- getLastUpdated() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Returns the value of the LAST-UPDATED clause in this MODULE-IDENTITY macro.
- getLatestReceived() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
-
- getLeafSyntax() -
Method in class com.adventnet.snmp.beans.ClippedTable
-
- getLeafSyntax(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the syntax for the node corresponding to this oid.
- getLeafSyntax(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the syntax of the node corresponding to this oid.
- getLineNo() -
Method in class com.adventnet.snmp.mibs.ErrorObject
- Returns the line number of the error.
- getLocalAddress() -
Method in class com.adventnet.snmp.snmp2.TcpProtocolOptionsImpl
- Get the local address configured.
- getLocalAddresses() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method gets the local addresses for which the
session should bind with.
- getLocalAddresses() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
String[] local_address = opt.getLocalAddresses();
- getLocalAddresses() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Returns the value of localAddress bound on the session instance.
- getLocalAddresses() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the local addresses to listen on.
- getLocalPort() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method returns the local port at which the session should be
opened.
- getLocalPort() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
int local_port = opt.getLocalPort();
- getLocalPort() -
Method in class com.adventnet.snmp.snmp2.TcpProtocolOptionsImpl
- Get the local port configured.
- getLocalPort() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the localport at which the sasclient is started.
- getLocalTime() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
-
- getLogClient(int) -
Static method in class com.adventnet.utils.LogManager
- Returns the client that have registered to receive log messages
or null is returned if no one is registered.
- getLogClients() -
Static method in class com.adventnet.utils.LogManager
- Returns the clients that have registered to receive log messages
or null is returned if no one is registered.
- getLogDirectory() -
Method in class com.adventnet.afp.log.FileLogWriter
- This will return the log directory.
- getLogger(String) -
Static method in class com.adventnet.utils.LogManager
- Returns the Logger Instance corresponding to the given loggerInstanceName.
- getLogger(String) -
Method in class com.adventnet.afp.log.LogFactory
- The
getLogger
method is used to get the instance of the Logger specified by loggerInstanceName.
- getLoggerProperties() -
Method in interface com.adventnet.afp.log.LogConfigReader
-
- getLoggerProperties() -
Method in class com.adventnet.afp.log.LogConfigFileReader
- The
getLoggerProps
method is used to get the properties of all the loggers.
- getLoggers() -
Method in class com.adventnet.afp.log.LogFactory
- This method is used to get the instances of all the Loggers
that are created for performing the Logging operation.
- getLogLevel() -
Method in class com.adventnet.afp.log.AbstractLogger
- The
getLogLevel
method is used to get the current Logging level of the Logger.
- getLogLevel() -
Method in class com.adventnet.afp.log.LoggerProperties
- To get the logging level of the Logger.
- getLogLevel() -
Method in interface com.adventnet.afp.log.Logger
- The
getLogLevel
method is used to get the current LogLevel of the particular
Logger.
- getLogWriter() -
Method in class com.adventnet.afp.log.LoggerImpl
- The
getLogWriter
method is used to get the LogWriter of the Logger.
- getLogWriter(String) -
Static method in class com.adventnet.utils.LogManager
- Returns the LogWriter Instance corresponding to the given logWriterInstanceName.
- getLogWriter(String) -
Method in class com.adventnet.afp.log.LogFactory
- Gives instance of the LogWriter which has the logWriterInstanceName.
- getLogWriterProperties() -
Method in interface com.adventnet.afp.log.LogConfigReader
- It returns an array of LogWriterProperties.
- getLogWriterProperties() -
Method in class com.adventnet.afp.log.LogConfigFileReader
- The
getLogWriterProps
method is used to get the properties of all the log Writers.
- getLogWriters() -
Method in class com.adventnet.afp.log.LogFactory
- This method is used to get the instance of
all the LogWriters that are created for performing the Logging operation.
- getMacroType() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the macro-type of this node.
- getMajorVersion() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the major version of this release of SNMP Library.
- getMandatoryGroup() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns the MANDATORY-GROUP field in MODULE-COMPLIANCE
- getMandatoryGroups() -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Retuns a Vector of MandatoryGroups defined in this ModuleCompliance Module.
- getMatchingEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Gets the SnmpNotifyFilterProfileEntries corresponding to the paramsName.
- getMatchingFilterEntries(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable
- Gets the SnmpNotifyFilterEntries corresponding to the given
filterProfileName as an Enumeration.
- getMax() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the maximum value allowed for integer type syntaxes
- getMaxFileCount() -
Method in class com.adventnet.afp.log.FileLogWriter
- This will return the maximum file count.
- getMaxLineCount() -
Method in class com.adventnet.afp.log.FileLogWriter
- This will return the maximum lines .The maximum number of lines per file that is
used currently can be retreived using this method.
- getMaxNumRows() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the maximum number of rows that can be processed,
default value is 1000.
- getMaxRepetitions() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- GetsMax-Repetitions value of this PDU.
- getMaxRepetitions() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target max repetitions value for a getbulk request.
- getMaxRepetitions() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target max repetitions value for a getbulk request.
- getMaxSasTypes() -
Method in class com.adventnet.snmp.snmp2.SASClient
- This method returns the number of known SAS request types and users
are requested to use a number greater than the returned value which
will keep changing in the future.
- getMCModule(String) -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the ModuleComplianceModule object for the given name.
- getMCModules() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the Vector of ModuleComplianceModule objects.
- getMessage() -
Method in class com.adventnet.afp.log.LogException
- This method returns the error message of the exception.
- getMibModule(MibNode) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the MIB Module that contains the specified MibNode.
- getMibModule(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the MIB Module from list of already loaded MIBs.
- getMibModuleIdentity() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the ModuleIdentity object for the given name.
- getMibModuleNames() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the names of the Mib modules loaded.
- getMibModules() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns all the MIBs that are loaded in this applet/application.
- getMibModules() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the MIBs (/white-space separated list of mib files)that is(/are)
loaded in this applet/application
- getMibModules() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the MIBs loaded in this applet/application -
a white-space separated list of mib files.
- getMibModules() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets all the MIB modules loaded in this MibOperations instance.
- getMibNode(int[]) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the MibNode corresponding to the int array of OID.
- getMibNode(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the MibNode for this SnmpOID instance by searching all the MIB modules.
- getMibNode(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the MibNode corresponding to the SnmpOID argument
- getMibNode(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the node corresponding to this label.
- getMibNode(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the MibNode corresponding to the String OID argument.
- getMibNode(String, String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the node correspoding to the label in this mib.
- getMibNode(Vector) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gives the MibNode per the Vector of Strings OID argument.
- getMibNode(Vector) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the MibNode per the Vector of Strings OID argument.
- getMibNodeByName(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gives the MibNode corresponding to the specified nodeLabel
- getMibNotification(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the NOTIFICATION-TYPE object corresponding to the given name.
- getMibOperations() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- get the MibOperations object reference.
- getMibOperations() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the MibOperations object reference.
- getMibOperations() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the MibOperations object reference.
- getMibPath() -
Method in class com.adventnet.snmp.beans.SnmpServer
- To get the search Path in which the loadMibModules() will search for the
MIB modules.
- getMibPath() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the search Path in which the Mib Parser will search for the MIB
modules.
- getMibPath() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the search Path in which the Mib Parser will search for the
MIB modules.
- getMibTC(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the TEXTUAL-CONVENTION corresponding to the given name.
- getMibTrap(SnmpOID, int, int) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the trap definition matching the given enterprise, generic type
and specific type values.
- getMibTrap(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Used to get the MibTrap object by giving the trap name.
- getMibVersion() -
Method in class com.adventnet.snmp.mibs.MibModule
- Used to know,whether the loaded MIB module is a SMIv1 MIB
(Structure of Management Information) or SMIv2 MIB.
- getMin() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the minimum value allowed for integer type syntaxes
- getMinorVersion() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the minor version of this release of SNMP Library.
- getModeOfGettingTable() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Not for API users.Returns the mode of getting table
- getModule() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns the MODULE field in MODULE-COMPLIANCE macro.
- getModuleCompliance() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the various clauses in MODULE-COMPLIANCE macro.
- getModuleCompliance(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Returns the ModuleComplience object corresponding to the given name.
- getModuleIdentity() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gives the MODULE-IDENTITY node defined in the MIB.
- getModuleName() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the name of the module this node is defined
return the module name e.g.
- getModuleName() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Returns the name of the module this trap is defined.
- getModuleNameDefinition(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Lets you know the module name contained in this MIB file.
- getModuleNameDefinitions(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gives all the module names contained in this mib file.
- getModuleSize() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Returns the number of modules loaded in this MibOperations instance.
- getMsg() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Returns the SnmpMessage instance for this pdu.
- getMsgFlags() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Get the msgFlags field of the SNMP PDU.
- getMsgID() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Returns the message Id for the v3 packet.
- getMsgMaxSize() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Returns the max message size field of the SNMPV3 packet.
- getMultipleRevision() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the multiple revisions availabe for the MIB.
- getName() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Returns the name of this ObjectGroup object.
- getName() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the name of this ModuleCompliance object.
- getName() -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns the name of this ModuleComplianceModule object.
- getName() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Returns the name of this NotificationGroup object.
- getName() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the name of this MIB module.
- getName() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Returns the name of this ObjectGroup object.
- getName() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Returns the name of this LeafSyntax instance.
- getName() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Returns the name of this VARIATION clause in the AGENT-CAPABILITIES macro.
- getName() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Returns the name of this trap.
- getName() -
Method in class com.adventnet.snmp.mibs.MibTC
- Returns the name of this TEXTUAL-CONVENTION.
- getName() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Returns the name of this NotificationType object.
- getName() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Returns the name of this ModuleIdentity object.
- getNearestNode(int[]) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the Nearest MibNode corresponding to the int array of OID.
- getNearestNode(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the node corresponding to the oid which is nearest to this SnmpOID instance.
- GETNEXT -
Static variable in class com.adventnet.snmp.beans.RequestEvent
- Constant for GetNext Request
- GETNEXT_REQ_MSG -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for SNMP get next PDU type.
- getNext() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Returns the state of the button "Next" in SnmpTablePanel.
- getnext(SnmpOID) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SnmpPDU pdu = new SnmpPDU();
pdu.addNull(oid);
pdu.setCommand(SnmpAPI.GETNEXT_REQ_MSG);
SnmpPDU response_pdu = snmpSession.syncSend(pdu);
SnmpVar var = null;
if(response_pdu != null)
{
var = response_pdu.getVariable(0);
}
- getnext(String) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SnmpPDU pdu = new SnmpPDU();
pdu.addNull(new SnmpOID(oidString));
pdu.setCommand(SnmpAPI.GETNEXT_REQ_MSG);
SnmpPDU response_pdu = snmpSession.syncSend(pdu);
SnmpVar var = null;
if(response_pdu != null)
{
var = response_pdu.getVariable(0);
}
- getNextLeafNode() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the next leaf node by searching through the current
module.
- getNodesFromNames(Vector) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the MibNodes corresponding to the names in the Vector.
- getNodesFromString(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the MibNodes corresponding to the node names in the nodelist.
- getNonRepeaters() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets Non-Repeaters value of this PDU.
- getNonRepeaters() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target non-repeaters value for a getbulk request
Default is 0.
- getNonRepeaters() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target non-repeaters value for a getbulk request.
- getNotAccessibleIndex() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the values for the not-accessible indices in the table.
- getNotAccessibleIndex() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the values for the not-accessible indices of the snmpTable.
- getNotAccessibleIndexColumns() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the names of the not-accessible index columns in the table.
- getNotAccessIndexColumns() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the names of the not-accessible index columns in the table.
- getNotificationDefinition() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the Notification definition if available in a loaded MIB
- getNotificationGroup(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the NotificationGroup object for the given name.
- getNotifications() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the NOTIFICATIONS clause names in this NOTIFICATION-GROUP macro.
- getNotificationsNames() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the NOTIFICATIONS clause names in NOTIFICATION-GROUP macro
- getNotificationType(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the NotificationType object for the given name.
- getNotifyFilterProfileTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpNotifyFilterProfileTable that is associated with this
SnmpAPI instance.
- getNotifyFilterTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpNotifyFilterTable that is associated with this SnmpAPI
instance.
- getNotifyTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpNotifyTable that is associated with this SnmpAPI instance.
- getNotifyTag() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Retrieves the snmpNotifyTag value associated with this object.
- getNotifyType() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Retrive the snmpNotifyType value associated with this object.
- getNotifyView() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the VacmAccessNotifyViewName.
- getNotInTimeWindows() -
Static method in class com.adventnet.snmp.snmp2.usm.USMStats
- Returns the notInTimeWindows count.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the numbered oid String of this ModuleCompliance node.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the numbered OID string of the node.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Returns the numbered oid String of this NotificationGroup.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Returns the numbered oid String of this ObjectGroup.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Returns the numbered oid String of this NotificationType.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Returns the numbered oid String of this ModuleIdentity.
- getNumCols() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the total number of columns present in the SnmpTable
- getNumericValue() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result Numeric value at index 0 as long.
- getNumericValue(int) -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result Numeric value at specified index as long.
- getNumericValueAsBigInt() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result Numeric value at index 0 as BigInteger.
- getNumericValueAsBigInt(int) -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result Numeric value at specified index as BigInteger.
- getNumericValues() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result Numeric values as long[].
- getNumericValuesAsBigInt() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result Numeric values as BigInteger[].
- getNumOfVisibleRows() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the number of rows that will be visible in the SnmpTablePanel.
- getObject() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns a Vector of the OBJECT fields in MODULE-COMPLIANCE
- getObjectAccess() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Gets the ACCESS fields under OBJECT clause in MODULE-COMPLIANCE.
- getObjectDescr(String) -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns the description for the given object name.
- getObjectDescription() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns a Vector of the DESCRIPTION fields under OBJECT clause in MODULE-COMPLIANCE
- getObjectGroup(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets the ObjectGroup object for the given name.
- getObjectID() -
Method in class com.adventnet.snmp.snmp2.SnmpVarBind
- Return the object identifier in the SnmpVarBind.
- getObjectID() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns the first object ID as a string
- getObjectID() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the first object ID from a list of ObjectIDs.
- getObjectID(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the specified SNMP ObjectID from PDUs list of variable bindings.
- getObjectID(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns the object ID at index as a string
- getObjectID(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the object ID at the specified index
- getObjectID(int) -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets specified variable ObjectID as a String from list of trap variables.
- getObjectIDList() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns the list of object IDs as a string array or null, if no OIDs is set previously.
- getObjectIDList() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the list of object IDs.
- getObjectMinAccess(String) -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns the MIN-ACCESS value of the OBJECT with the given object name.
- getObjectNames() -
Method in class com.adventnet.snmp.mibs.MibNode
- Deprecated. use the getObjects method instead.
- getObjects() -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns a Vector of objects defined in this ModuleCompliance Module.
- getObjects() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the OBJECT clause names in OBJECT-GROUP and NOTIFICATION-TYPE macro.
- getObjects() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Gets the OBJECT clause names in OBJECT-GROUP macro.
- getObjects() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the OBJECT clause names in this NOTIFICATION-TYPE macro.
- getObjectSyntax() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns a Vector of SYNTAX values under OBJECT clause in MODULE-COMPLIANCE
- getObjectSyntax(String) -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns the SYNTAX value of the OBJECT with the given name.
- getObjectWriteSyntax() -
Method in class com.adventnet.snmp.mibs.MibModuleCompliance
- Deprecated. Returns a Vector of WRITE-SYNTAX values under the OBJECT clause in MODULE-COMPLIANCE
- getObjectWriteSyntax(String) -
Method in class com.adventnet.snmp.mibs.ModuleComplianceModule
- Returns the WRITE-SYNTAX value of the OBJECT with the given object name.
- getOID() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the numbered OID of the node as an array of ints.
- getOIDPrefix() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- This method returns the OID prefix that is
set before.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the named oid String of this ModuleCompliance node.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the named OID of the node.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Returns the named oid String of this NotificationGroup.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Returns the named oid String of this ObjectGroup.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Returns the named oid String of this NotificationType.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Returns the named oid String of this ModuleIdentity.
- getOIDVector() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the named OID of the node as a Vector.
- getOIDVectorIds() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the numbered OID of the node as a Vector of Integer objects.
- getOrganization() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the value of ORGANIZATION clause in MODULE-IDENTITY macro
- getOrganization() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Returns the value of the ORGANIZATION clause in this MODULE-IDENTITY macro.
- getOverwriteCMI() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Deprecated. Instead use isOverwriteCMI() method.
- getOverwriteCMI() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the overwrite compiled mibs boolean.
- getOverwriteCMI() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Deprecated. since 4.0, replaced by
MibOperations.isOverwriteCMI()
- getPacketBufferSize() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets the Datagram Buffer Size used for receiving SNMP packets.
- getPageSize() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Returns the number of pages in table stack, i.e.
- getParameter(String) -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Returns the value of the named parameter in the HTML tag.
- getParent() -
Method in class com.adventnet.snmp.mibs.MibNode
- We can make use this method to get the parent of this node.
- getParsedTime(Date) -
Static method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the long value of the date object.
- getParsingLevel() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Returns the parsingLevel.
- getPatchVersion() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the patch version of this release of SNMP Library.
- getPDU() -
Method in class com.adventnet.snmp.snmp2.SnmpMessage
- Returns the SnmpPDU instance associated with this message.
- getPeername() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
opt.getRemoteHost();
- getPerformSets() -
Method in class com.adventnet.snmp.beans.SnmpTable
- To check if the values will get set if some change is made in any table
field which has write access(any editable cell).
- getPerformSets(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To Activate/Deactivate an editable table field (cell).
- getPolledNumRows() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the number of rows actually polled.
- getPollingStatus() -
Method in class com.adventnet.snmp.beans.SnmpPoller
- returns whether the polling of some data is going on or not.
- getPollInterval() -
Method in class com.adventnet.snmp.beans.SnmpPoller
- get the current polling interval in seconds
- getPollInterval() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the current polling interval in seconds.
- getPort() -
Method in class com.adventnet.management.transport.TcpSessionTransportImpl
- Returns the port of the TCP socket.
- getPort() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the local SNMP port number to listen on.
- getPortWithExceptionMsg() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the local SNMP port number to listen on.
- getPosition() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- This method returns the position in the buffer where the
the data will be encoded/decoded.
- getPrincipal() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 Principal
- getPrincipal() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 username
- getPrincipal() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets Principal ie userName
- getPrincipal() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Gets the principal associated with the SnmpEngineID discovery/time
synchronization request that is sent.
- getPrivKey() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the privacy key value.
- getPrivParams() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieve the priv params.
- getPrivPassword() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the privacy password.
- getPrivPassword() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 PrivPassword
- getPrivPassword() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 PrivPassword
- getPrivPassword() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMPv3 privacy password.
- getPrivProtocol() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the privacy protocol value.
- getProductrelease() -
Method in class com.adventnet.snmp.mibs.MibNode
- Get the value of PRODUCT-RELEASE clause in AGENT-CAPABILITIES macro
- getProductRelease() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Returns the PRODUCT-RELEASE clause of this object.
- getPropertyDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTargetBeanInfo
- this will return the PropertyDescriptors for this bean
- getPropertyDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpPollerBeanInfo
- this will return the ProperyDescriptors for this bean
- getPropertyDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo
- this will return the PropertyDescriptor for this bean
- getPropertyDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpRequestServerBeanInfo
- this will return the PropertyDescriptors for this bean
- getPropertyDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTableBeanInfo
- this will return the PropertyDescriptor for this bean
- getProtocol() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. since all SNMP communications go through only
a transportProvider, this method is not at all necessary.
- getProtocol() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the protocol.
- getProtocolData() -
Method in class com.adventnet.snmp.snmp2.SnmpTransportPacket
- Gets the SNMP message to be sent or received i.e.
- getProtocolOptions() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- This method will return the ProtocolOptions associated with this
SnmpSession.
- getProtocolOptions() -
Method in class com.adventnet.snmp.snmp2.SnmpTransportPacket
- Gets the transport options configured in the Transport Packet.
- getProtocolOptions() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- This method will return the transport mechanism's protocol options
- getRangeItems() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gets the range constraints available for this syntax.
- getReadView() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the VacmAccessReadViewName.
- getReceiveBufferSize() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method returns the previously set buffer size
or zero.
- getReceiveBufferSize() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. instead use the getReceiveBufferSize method
available in UDPProtocolOptions.
- getReceiveBufferSize() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- This method returns the buffer size of this SnmpTrapReceiver.
- getReceivedData() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- Returns the data.
- getReference() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the REFERENCE string for this OBJECT-GROUP macro.
- getReference() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the value of the REFERENCE clause for this ModuleCompliance.
- getReference() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets string reference for this node.
- getReference() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the REFERENCE string for this NotificationGroup object.
- getReference() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Gets the REFERENCE string for this OBJECT-GROUP macro.
- getReference() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the value of the REFERENCE clause.
- getReference() -
Method in class com.adventnet.snmp.mibs.MibTC
- Gets the REFERENCE string for this TC.
- getReference() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the REFERENCE string for this NotificationType object.
- getRemoteAddress() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method gets the remoteAddress as an InetAddress object.
- getRemoteHost() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method returns the remoteHost.
- getRemoteHost() -
Method in class com.adventnet.snmp.snmp2.TcpProtocolOptionsImpl
- Get the remote host with which this SNMP entity will communicate.
- getRemoteHost() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)SnmpPDU.getProtocolOptions();
String remoteHost = opt.getRemoteHost();
- getRemoteHost() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Returns the host name of the corresponding Snmp entity.
- getRemoteHost() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the remoteHost of this ProtocolOptions obeject.
- getRemoteHost() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets hostname of the source of trap.
- getRemotePort() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method gets the remotePort to which the SNMP packets should
be sent.
- getRemotePort() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
opt.getRemotePort();
- getRemotePort() -
Method in class com.adventnet.snmp.snmp2.TcpProtocolOptionsImpl
- Get the remote port with which this SNMP entity will communicate.
- getRemotePort() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)SnmpPDU.getProtocolOptions();
int remotePort = opt.getRemotePort();
- getRemotePort() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Returns the port of the corresponding Snmp entity.
- getRemotePort() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the remotePort for this object.
- getRemotePort() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the remote port of source of trap
- getReport() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Returns the status of report flag.
- getReqid() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets request id of this PDU.
- getReqid() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the request Identifier in packet.
- getRequestID() -
Method in class com.adventnet.snmp.beans.ResultEvent
- Returns the request ID, which may be necessary to track requests.
- getResponse() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the response object - SnmpPDU for SNMP requests
- getResult() -
Method in class com.adventnet.snmp.beans.SnmpResultObject
- This will return a Vector of successful operation string values.
- getResult() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Get the Result string associated with the SnmpEngineID discovery and
the time synchronization.
- getRetries() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets number of retries before timeout.
- getRetries() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets number of retries for this PDU before timeout.
- getRetries() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target retries value.
- getRetries() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target retries value.
- getRetrievalMode() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the mode of retrieval of table data.
- getRevdescription() -
Method in class com.adventnet.snmp.mibs.MibNode
- Deprecated. since 4.0. Instead you can use the method getRevisionDescriptions()
- getRevision() -
Method in class com.adventnet.snmp.mibs.MibNode
- Deprecated. since 4.0. Instead you can use the method getRevisions()
- getRevisionDescription(String) -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gives the description for the gievn revision.
- getRevisionDescriptions() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the revision descriptions as a vector of String Elements.
- getRevisions() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the revisions as a Vector of String Elements.
- getRevisions() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gets the value of REVISION clause in this MODULE-IDENTITY macro
- getRootNode() -
Method in class com.adventnet.snmp.mibs.MibModule
- Gets a reference to the root node in this MIB module.
- getRootNodes() -
Method in class com.adventnet.snmp.mibs.MibModule
- Returns a collection of root nodes.
- getRoundTripDelay() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Returns round-trip delay if received response PDU
- getRow(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To get data for a table row,specified by its position in the table.
- getRow(String, String) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the data for a row of the Table specified by the index .
- getRowCount() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Returns the number of rows of data available in the SnmpTable.
- getRowName() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the name of the row sequence.
- getRowStatus() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Retrieves the snmpNotifyFilterProfileRowStatus value associated with this object.
- getRowStatus() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Retrieves the snmpNotifyRowStatus value associated with this object.
- getRowStatus() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Retrieves the snmpNotifyFilterRowStatus value associated with this object.
- getRowStatus() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunityStatus value associated with this object.
- getSASClient() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SASProtocolOptions opt = (SASProtocolOptions)snmpSession.getProtocolOptions();
SASClient sasclient = opt.getSASClient();
- getSASClient() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the SASClient instance which has been created at last through
the SnmpSession class.
- getSASClient() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the SASClient instance.
- getSASProtocol() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
SASProtocolOptions opt = (SASProtocolOptions)snmpSession.getProtocolOptions();
int sasprotocol = opt.getProtocol();
- getSecLevelForTimeSync() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Returns the securitylevel that would be used when doing
a V3 timeSync for a authPriv user.
- getSecLevelForTimeSync() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Returns the securitylevel that would be used when doing
a V3 timeSync for a authPriv user.
- getSecurity() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Get securityModel object is associated with the message.
- getSecurityID(byte[]) -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns a security model dependent securityID, using the
security model independent security name.
- getSecurityID(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns, a security model dependent securityID, using the
security model independent security name.
- getSecurityID(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Returns the securityID ( which depends on the security model ).
- getSecurityLevel() -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns the security level associated with this securityEntry.
- getSecurityLevel() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns, the security level associated with this securityEntry.
- getSecurityLevel() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the security level value for this user entry.
- getSecurityLevel() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the securityLevel.
- getSecurityLevel() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 SecurityLevel
- getSecurityLevel() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 SecurityLevel
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns the security model.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Returns the securityModel assoicated with this message.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the securityModel associated with this PDU.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns, the security model.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Returns the securityModel.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Get the securityModel value associated with this object.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the securityModel value.
- getSecurityModel() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 securityModel
- getSecurityModel() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP V3 securityModel
- getSecurityModel() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMP V3 securityModel
- getSecurityName() -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns the security model independent security name.
- getSecurityName() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunitySecurityName value associated with this object.
- getSecurityName() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the security name, which is independent of the security model.
- getSecurityName() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Get the securityName value associated with this object.
- getSecurityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns a security model independent security name, using the
security model dependent securityID.
- getSecurityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Returns, a security model independent security name using the
security model dependent securityID.
- getSecurityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the security name ( which is independent of the security model )
using the securityID ( which depends on the security model ).
- getSecurityProvider() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
-
- getSecurityProvider() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SecurityProvider maintained by this SnmpAPI.
- getSecurityProvider() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the security provider.
- getSecurityTable(int) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Returns the SecurityModelTable as an object for a given
security model.
- getSecurityTable(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SecurityModelTable as an object for a given security Model.
- getSendTimeoutEvents() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Returns the boolean state of whether this target will send timeout
events to a registered listener.
- getSendTimeoutEvents() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To check if the target will send timeout
events to registered listeners.
- getSerializedMibFileName() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the name of the Serialized Mib file
- getSerializedMibFileName() -
Method in class com.adventnet.snmp.beans.ClippedTable
- gets the name of the Serialized Mib file
- getSerializedMibFileName() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Retrieves the Serialized MIB file name.
- getSerializeFileName() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the fileName into which the SNMPv3 configuration tables are to
be serialized.
- getSessionId() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This is the method present in ProtocolOptions.
- getSessionId() -
Method in interface com.adventnet.snmp.snmp2.ProtocolOptions
- This method returns a unique sessionId for each Snmp session.
- getSessionId() -
Method in class com.adventnet.snmp.snmp2.TcpProtocolOptionsImpl
- Get a unique session id that is associated with each SNMP session
initiated from this SNMP entity.
- getSessionId() -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- gets the session id for this ProtocolOptions obejct.
- getSessionList() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Get the List of SNMP sessions managed under this SnmpAPI instance.
- getSeverity() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the numeric severity value of the trap
1 - All
2 - Critical
3 - Major
4 - Minor
5 - Warning
6 - Clear
7 - Info
- getSize() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the maximum Size restriction for this syntax.
- getSnmpAPI() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Returns the SnmpAPI reference associated with this SnmpSession.
- getSnmpClients() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Returns the clients that have been registered for callbacks or null
is returned if no one is registered.
- getSnmpClientsSize() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
int snmpClientsSize = (snmpSession.getSnmpClients()).size();
- getSnmpClientsWithID() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Returns the hashtable in which the clientID and the SnmpClient are
associated.
- GetSnmpEnableAuthenTraps() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the status of the snmpEnableAuthenTraps variable.
- getSnmpEngine() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpEngineTable reference.
- getSnmpEngineBoots() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpEngineBoots (number of times this SNMP engine
has booted of this SNMP entity.
- getSnmpEngineID() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the authoritative SnmpEngineID associated with this
SNMP entity.
- getSnmpEngineID() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the SnmpEngineID of this SNMP entity.
- getSnmpEngineTable() -
Method in class com.adventnet.snmp.beans.SnmpServer
- returns the SnmpEnginetable which contains the information about
v3 engine configured to this bean
- getSnmpEngineTable() -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to get SnmpEngineTable reference
- getSnmpEngineTime() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpEngineTime.
- getSnmpGroup(String, int) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpGroup Object corresponding to the SnmpSession's
local_addrs and local_port.
- getSnmpInASNParseErrs() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInASNParseErrs count.
- getSnmpInBadCommunityNames() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInBadCommunityNames count.
- getSnmpInBadCommunityUses() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInBadCommunityUses count.
- getSnmpInBadValues() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInBadValues count.
- getSnmpInBadVersions() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInBadVersions count.
- getSnmpInGenErrs() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInGenErrs count.
- getSnmpInGetNexts() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInGetNexts count.
- getSnmpInGetRequests() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInGetRequests count.
- getSnmpInGetResponses() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInGetResponses count.
- getSnmpInNoSuchNames() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInNoSuchNames count.
- getSnmpInPkts() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInPkts count.
- getSnmpInReadOnlys() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInReadOnlys count.
- getSnmpInSetRequests() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInSetRequests count.
- getSnmpInTooBigs() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInTooBigs count.
- getSnmpInTotalReqVars() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInTotalReqVars count.
- getSnmpInTotalSetVars() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInTotalSetVars count.
- getSnmpInTraps() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInTraps count.
- getSnmpInvalidMsgs() -
Static method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpInvalidMsgs count.
- getSnmpOID() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns the first SnmpOID from the list of object IDs
or null, if no OID is set previously.
- getSnmpOID() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the first SnmpOID from the list of object IDs.
- getSnmpOID(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Creates an SnmpOID instance based on the loaded MIBs.
- getSnmpOID(String) -
Method in class com.adventnet.snmp.mibs.MibModule
- Creates an SnmpOID instance from the specified string and information from this Module.
- getSnmpOIDList() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method returns the list of object IDs as an array of SnmpOID
or null if no OID is set previously.
- getSnmpOIDList() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the list of object IDs as an array of SnmpOID instances
- getSnmpOutBadValues() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutBadValues count.
- getSnmpOutGenErrs() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutGenErrs count.
- getSnmpOutGetNexts() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutGetNexts count.
- getSnmpOutGetRequests() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutGetRequests count.
- getSnmpOutGetResponses() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutGetResponses count.
- getSnmpOutNoSuchNames() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutNoSuchNames count.
- getSnmpOutPkts() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutPkts count.
- getSnmpOutSetRequests() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutSetRequests count.
- getSnmpOutTooBigs() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutTooBigs count.
- getSnmpOutTraps() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpOutTraps count.
- getSnmpProperty() -
Method in class com.adventnet.snmp.beans.SnmpPropertyChangeEvent
- get property value as its original object
- getSnmpProxyDrops() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpSilentDrops count.
- getSnmpSilentDrops() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpSilentDrops count.
- getSnmpTargetAddrMMS() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Gets the snmpTargetAddrMMS associated with this object.
- getSnmpTargetAddrTMask() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Gets the snmpTargetAddrTMask associated with this object.
- getSnmpTrapOID() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
-
- getSnmpUnavailableContexts() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpUnavailableContexts count.
- getSnmpUnknownContexts() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpUnknownContexts count.
- getSnmpUnknownPDUHandlers() -
Static method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpUnknownPDUHandlers count.
- getSnmpUnknownSecurityModels() -
Static method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpUnknownSecurityModels count.
- getSnmpVarVec(int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets a vector of SnmpVar value of the specified row in the table.
- getSnmpVersion() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target SNMP Version.
- getSnmpVersion() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target SNMP Version.
- getSnmpVersion() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMP Version
- getSpecificType() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets specific trap type.
- getSpecificType() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets specific type number for the Trap Received.
- getSpinLock() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeTable
- Get the spinlock value.
- getStartLocalPort() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. now the "open(Applet)" method will throw an
SnmpException if it is unable to connect to the SAServer. When such
an exception is received, the user should decide whether "open(void)"
method should be called or not.
- getStatement() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns the Statement instance corresponding to this SnmpAPI instance
- getStatus() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the STATUS field value for this OBJECT-GROUP macro.
- getStatus() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the STATUS value of this ModuleCompliance.
- getStatus() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the status value of this node.
- getStatus() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the STATUS field value for this NotificationGroup object.
- getStatus() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Gets the STATUS field value for this OBJECT-GROUP macro.
- getStatus() -
Method in class com.adventnet.snmp.mibs.MibTC
- Gets the STATUS field value for this TC.
- getStatus() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the STATUS field value for this NotificationType object.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Retrieves the snmpNotifyFilterProfileStorType value associated
with this object.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Retrive the snmpNotifyStorageType value associated with this object.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Retrieves the snmpNotifyFilterStorageType value associated with
this object.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunityStorageType value associated with this object.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the USM StorageType associated with this USMUserEntry.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the VACM Access StorageType associated with this VacmAccessEntry
- getStr(String) -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the characterstics of the Trap that this event contains.
- getString(String) -
Static method in class com.adventnet.utils.SnmpUtils
- Returns the equivalent string from the Resource Bundle.
- getStringValue() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the first result String value.
- getStringValue(int) -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result String value at requested index.
- getStringValueAt(int, int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Gets the string value for the cell specified by the row and column index.
- getStringValues() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result String values as string array.
- getSubid() -
Method in class com.adventnet.snmp.mibs.MibNode
- Deprecated. since 4.0. Instead you can use the method getSubID()
- getSubID() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the sub-identifier of this node's object-identifier.
- getSuccessCode() -
Method in class com.adventnet.snmp.beans.SnmpResultObject
- This method will get the success code of this ResultObject.
- getSupports() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Gets the name of the module that is being supported.
- getSyntax() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the syntax associated with this node.
- getSyntax() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0. Instead you can use getSyntax() in ACVariation class
- getSyntax() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the syntax for this leafSyntax Object.
- getSyntax() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Returns the SYNTAX value of this Variation.
- getSyntax() -
Method in class com.adventnet.snmp.mibs.MibTC
- Gets the syntax associated with this TC.
- getSyntaxByName(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the syntax for the node represented by the String argument.
- getSystemUpTime() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
-
- getTable(int) -
Method in class com.adventnet.snmp.snmp2.SecurityProvider
- Returns the SecurityModelTable as an object for a given security model.
- getTableColumnNames() -
Method in class com.adventnet.snmp.beans.ClippedTable
-
- getTableItems() -
Method in class com.adventnet.snmp.mibs.MibNode
- Will give the names of the items in the row sequence.
- getTableOID() -
Method in class com.adventnet.snmp.beans.SnmpTable
- To get table oid used with this SnmpTable instance.
- getTableSequence() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the name in the SEQUENCE OF "name" item
- getTag() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- This method is used to get the tag from a received SNMP message.
- getTargetAddrEntry() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Retrieves the SnmpTargetAddrEntry associated with this object.
- getTargetAddrExtTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpTargetAddrExtTable corresponding to this SnmpAPI.
- getTargetAddrTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpTargetAddrTable corresponding to this SnmpAPI.
- getTargetHost() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target hostname
- getTargetHost() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target hostname
- getTargetHost() -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to get target host
- getTargetHost() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Gets the target host to which an SnmpEngineID discovery/time
synchronization request is sent.
- getTargetParamsTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpTargetParamsTable corresponding to this SnmpAPI.
- getTargetPort() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- get the SNMP target port number
- getTargetPort() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target port number
- getTargetPort() -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to get target port
- getTargetPort() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Gets the target port to which an SnmpEngineID discovery/time
synchronization request is sent.
- getTCDescription() -
Method in class com.adventnet.snmp.mibs.MibTC
- Gets the DESCRIPTION string for this TC.
- getThrowFileNotFound() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Deprecated.
- getTimeout() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets the timeout value.
- getTimeout() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the timeout value.
- getTimeout() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target timeout value
- getTimeout() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target timeout value in Seconds.
- getTimeoutInMilliSec() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Returns the timeout value in milliseconds.
- getTimeStamp() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the Time Stamp for the Trap received in String format
- getTimeToWait() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets the inter-packet delay time set on this SnmpSession object.
- getTimeToWait() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the inter-packet delay time set on this SnmpSession object.
- getTimeWindow() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the time window in which messages are accepted by this
SNMP engine.
- getTransportProvider() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- This method gets the transportProvier classname.
- getTransportTag() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Retrieves the snmpCommunityTransportTag value associated with this object.
- getTrapDefinition() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the trap definition if available in a loaded MIB
- getTrapOID() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- This method returns the trap-oid for this SNMPv2 trap-pdu.
- getTrapPDU() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the trap PDU.
- getTrapSource() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get Agent that sent the trap.
- getTrapType() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the generic type of the trap.
- getTrapType() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the trap type of a specific Trap.
- getTrapType() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Used to know whether this TRAP is generic or specific type.
- getType() -
Method in class com.adventnet.snmp.snmp2.SnmpVar
- Returns type, defined by SnmpAPI types, e.g.SnmpAPI.INTEGER .
- getType() -
Method in class com.adventnet.snmp.beans.SnmpTableEvent
- Returns the type of change that has occured.
- getType() -
Method in class com.adventnet.snmp.mibs.MibErrorMessages
- Returns the type of the error.
- getType() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Retrieves the SNMP ASN.1 tag value for this syntax.
- getTypeString() -
Method in class com.adventnet.snmp.snmp2.SnmpVar
- Returns type as a string, e.g.INTEGER, OCTET STRING based on the
type of SnmpVar object.
- getUnits() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the value of UNITS clause in OBJECT-TYPE macro
- getUnknownEngineIDs() -
Static method in class com.adventnet.snmp.snmp2.usm.USMStats
- Returns the unknownEngineIDs count.
- getUnknownUserNames() -
Static method in class com.adventnet.snmp.snmp2.usm.USMStats
- Returns the unknownUserNames count.
- getUnsupportedSecLevels() -
Static method in class com.adventnet.snmp.snmp2.usm.USMStats
- Returns the unsupportedSecurityLevel count.
- getUpTime() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the timeStamp of the object which has generated the trap.
- getUpTime() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the Up Time value of the Agent which sent the trap
- getUpTime() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets the uptime value for a trap.
- getUserCloneFrom() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the USMUserCloneFrom OID associated with this
USMUserEntry.
- getUserName() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Returns the principal for SNMPv3 messages.
- getUserName() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets the principal on whose behalf SNMPv3 requests are made.
- getUserName() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the userName associated with this user.
- getUserPublic() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the USM UserPublic associated with this USMUserEntry.
- getUserStatus() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the USM UserStatus associated with this USMUserEntry.
- getUSMTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Deprecated. use the following instead.
SnmpApi.getSecurityProvider().getTable(USM_SECURITY_MODEL); // where USM_SECURITY_MODEL = 3
- getUSMTable() -
Method in class com.adventnet.snmp.beans.SnmpServer
- returns the USMUserTable which contains the informations about v3 Users
- getUSMTable() -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to get USMUserTable reference
- getUSMTable() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the USMUserTable reference.
- getV3ConfigTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the table name that was configured for V3.
- getV3ConfigTable() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the table name that was configured for V3.
- getVacmAccessStatus() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the vacmAccessStatus associated with this VacmAccessEntry
- getVacmGroupName() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Get the VacmGroupName value.
- getVacmGroupStatus() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Get the vacmSecurityToGroupStatus associated with this VacmGroupEntry
- getVacmGroupStorageType() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Get the StorageType associated with this VacmGroupEntry
- getValue() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the generic or specific trap number.
- getValue(int) -
Method in class com.adventnet.snmp.beans.ResultEvent
- Returns value at specified index as a String variable.
- getValueAt(int, int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To get the value for the cell specified by the row and column index.
- getValues() -
Method in class com.adventnet.snmp.beans.ResultEvent
- This returns the result variable values as string array.
- getVarBindCount() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Returns the number of varbinds used with the splitted pdu.
- getVariable() -
Method in class com.adventnet.snmp.snmp2.SnmpVarBind
- Return the variable in the SnmpVarBind.
- getVariable(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets specified SNMP variable from PDUs list of variables.
- getVariable(int) -
Method in class com.adventnet.snmp.beans.TrapEvent
- Get the specified Variable as a String from traps list of variables.
- getVariableBinding(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets specified variable binding from PDUs list of variable bindings.
- getVariableBindings() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets list of SnmpVarBind objects as a vector.
- getVariables() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the variables as a vector of strings.
- getVariation() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0
- getVariationDescription() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0. Instead you can use getDescription() in ACVariation class.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpVar
- Abstract method which returns value of SNMP variable as an appropriate
Object type, e.g.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpUnsignedInt
- Returns the value of this SnmpUnsignedInt as a Long object.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpString
- Returns the value of this SnmpString object as a printable
string object.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpBitstring
- Returns the value of this SnmpBitstring SNMP variable as a
String Object.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpIpAddress
- Returns the values of this SnmpIpAddress as a printable
String object.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpInt
- Returns the value of this SnmpInt object as an Integer object.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpOID
- Returns the value of this SnmpOID as a printable string.
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpCounter64
- returns the value of SNMP variable as an object(long array of length 2).
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpNull
- Returns the value of this SnmpNull object as an appropriate Object type,
in this case returns null.
- getVersion() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets snmp version for outgoing SNMP requests.
- getVersion() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets snmp Version number in PDU.
- getVersion() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
-
- getVersion() -
Method in class com.adventnet.snmp.beans.TrapEvent
- Gets SNMP Version number in PDU.
- getVersionString() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Returns a string describing this version of SNMP Library.
- getViewTable() -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
- Gets the VacmViewTreeTable.
- getWriteCommunity() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets writeCommunity for outgoing requests.
- getWriteCommunity() -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets writeCommunity string received/sent.
- getWriteCommunity() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP target write Community to be used for set requests
- getWriteCommunity() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To get the SNMP target write Community to be used for set requests
- getWriterInstanceName() -
Method in class com.adventnet.afp.log.LoggerProperties
- Method to get the LogWriterInstanceName.
- getWriteSyntax() -
Method in class com.adventnet.snmp.mibs.AgentCapabilitiesModule
- Deprecated. Since 3.0. Instead you can use getWriteSyntax() in ACVariation class.
- getWriteSyntax() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Returns the WRITE-SYNTAX value of this Variation.
- getWriteView() -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Get the VacmAccessWriteViewName.
- getWrongDigests() -
Static method in class com.adventnet.snmp.snmp2.usm.USMStats
- Returns the wrongDigets count.
- SASAppletStub - class com.adventnet.snmp.snmp2.SASAppletStub.
- This class provides the implementation of the AppletStub methods to plug into
applet to simulate the applet behaviour.
- SASAppletStub() -
Constructor for class com.adventnet.snmp.snmp2.SASAppletStub
- Constructor that creates the implementation of the AppletStub.
- SASClient - class com.adventnet.snmp.snmp2.SASClient.
- The SASClient class enables applet services for applets that are limited
by the security sandbox that Java applets often run within.
- SASClient(Applet, boolean) -
Constructor for class com.adventnet.snmp.snmp2.SASClient
- By default this constructor will take the protocol value as 1 and look
for the SASPort.html file in the applet html directory.
- SASClient(Applet, boolean, int) -
Constructor for class com.adventnet.snmp.snmp2.SASClient
- If the protocol value is set to 1, this constructor will look
for the SASPort.html file in the applet html directory.
- SASProtocolOptions - class com.adventnet.snmp.snmp2.SASProtocolOptions.
- This class is the implementation of ProtocolOptions for
SAS implementation of SnmpTransportProvider.
- SASProtocolOptions() -
Constructor for class com.adventnet.snmp.snmp2.SASProtocolOptions
- Initializes the variables for this instance of SASProtocolOptions.
- SASProtocolOptions(String, int) -
Constructor for class com.adventnet.snmp.snmp2.SASProtocolOptions
- Initializes the variables for this instance of SASProtocolOptions.
- SASProtocolOptions(String, int, Applet) -
Constructor for class com.adventnet.snmp.snmp2.SASProtocolOptions
- Initializes the variables for this instance of SASProtocolOptions.
- saveFile(String, byte[]) -
Method in class com.adventnet.snmp.snmp2.SASClient
- The saveFile method for saving data to a file in "SASusers" sub-directory
in which SASPort.html was created by the SAServer.
- SECURITYEXP_CONNECTING_REMOTE_HOST -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when an security exception is got when conncecting to a Remote Host.
- SecurityModelEntry - class com.adventnet.snmp.snmp2.SecurityModelEntry.
- This is an abstract class which is used to define a new security model.
- SecurityModelEntry() -
Constructor for class com.adventnet.snmp.snmp2.SecurityModelEntry
-
- SecurityModelTable - class com.adventnet.snmp.snmp2.SecurityModelTable.
- This is an abstract class which contains a list of SecurityModelEntry
objects belonging to a particular securityModel.
- SecurityModelTable() -
Constructor for class com.adventnet.snmp.snmp2.SecurityModelTable
-
- SecurityProvider - class com.adventnet.snmp.snmp2.SecurityProvider.
- This class is used to register the appropriate security model to be
used with AdventNet SNMP API.
- send(SnmpPDU) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Send SnmpPDU on the given session after encoding the PDU.
- sendDiscoverMsg(SnmpSession) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- This performs the standard Snmpv3 discovery process to learn the
engineID of the Snmp peer entity.
- sendGetBulkRequestList() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a GetBulk request to get a list of SNMP variable bindings
from the agent using the Object Identifier list previously set
in this SnmpRequestServer instance.
- sendGetNextRequest() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a getnext request for the SNMP variable identified
by the first Object Identifier set in this SnmpRequestServer
instance.
- sendGetNextRequest(SnmpOID) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a getnext request for the SNMP variable identified
by specified Object Identifier.
- sendGetNextRequestList() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a getnext request for a list of SNMP variable bindings
identified by the Object Identifier list previously set
in this SnmpRequestServer instance.
- sendGetNextRequestList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a getnext request for a list of SNMP variables identified
by the Object Identifier list stored in this SnmpRequestServer instance.
- sendGetRequest() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a get request for the the SNMP variable identified by
the first Object Identifier stored in the SnmpRequestServer instance.
- sendGetRequest(SnmpOID) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a get request for the the SNMP variable identified
by specified Object Identifier.
- sendGetRequestList() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a get request for the list of SNMP variable bindings
identified by the Object Identifier list previously set in this
SnmpRequestServer instance.
- sendGetRequestList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a get request for a list of SNMP variables identified
by the Object Identifier list.
- sendNotification(SnmpPDU) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Authenticates and sends the notification to all the entries that can avail
of the notification filtering facility.
- sendSetRequest(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a set request with the value to be set for the ObjectID
This method will fail if MIB with this variable
is not loaded or this is not a leaf node in the MIB.
- sendSetRequest(String, byte) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a set request with the value to be set and the type of the variable
Throws DataException
if no OID specified earlier or in case of errors.
- sendSetRequestList(String[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the list of SNMP variable bindings on the agent using
the Object Identifier list previously set in this SnmpRequestServer
instance.
- sendSetRequestVariable(SnmpVar) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a set request to set the specified SnmpVar value for the OID
that is set in the SnmpRequestServer instance.
- sendSetRequestVariables(SnmpVar[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a set request to set the list of SNMP variable
bindings on the agent, using the Object Identifier list previously
set in this SnmpRequestServer instance.
- sendTimeSync(SnmpSession) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Achieves time sync with remotehost.
- sendTrap(SnmpOID, String, int, int, long, SnmpVar[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a SNMP trap, with parameters specified and variable bindings
using object ids from the Object Identifier list previously set
in this SnmpRequestServer instance, and the values specified.
- sendTrap(String, String, int, int, long, String[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To send a SNMP trap, with parameters specified and variable bindings
using object ids from the Object Identifier list previously set in
this SnmpRequestServer instance, and the values specified.
- serialize -
Variable in class com.adventnet.snmp.beans.SnmpTarget
- based on this flag v3 table like USMUserTable and SnmpEngineTable
will be serialized
- serialize -
Variable in class com.adventnet.snmp.beans.SnmpRequestServer
- based on this flag the v3 tables ( USMUserTable and SnmpEngineTable )
will be serialized.
- serialize() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- This serializes the SNMPV3 Security tables into the file
specified by the setSerializeFileName method.
- serialize() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable
- Stores the list of SnmpNotifyFilterEntry objects in the serialized file
"FilterEntry.ser"
- serialize() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyTable
- Stores the list of SnmpNotifyEntry objects in the serialized file
"NotifyEntry.ser"
- serialize() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Stores the list of SnmpNotifyFilterProfileEntry objects in the
serialized file "FilterProfileEntry.ser".
- serialize() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtTable
- Stores the list of SnmpTargetAddrExtEntry objects in the serialized file
"TAddrExtTable.ser"
- serialize() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineTable
- Stores the list of SnmpEngineEntry objects in the serialized file
"EngineEntry.ser".
- serialize() -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
- Stores the list of SnmpCommunityEntry objects in the serialized file
"CommunityEntry.ser"
- serialize() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Stores the list of USMUSerEntry objects in the serialized file
"UseEntry.ser"
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.SecurityModelTable
- Serializes the list of SecurityModelEntry objects into particular
output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable
- Serializes the list of SnmpNotifyFilterEntry objects into particular
output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyTable
- Serializes the list of SnmpNotifyEntry objects into particular
output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Serializes the list of SnmpNotifyFilterProfileEntry objects into
particular output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtTable
- Serializes the list of SnmpTargetAddrExtEntry objects into particular
output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
- Serializes the list of SnmpCommunityEntry objects into particular
output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Serializes the list of USMUserEntry objects into particular
output Stream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupTable
- Stores the VacmGroup entries in the file GroupEntry
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupAccessTable
- Stores the VacmGroupAccess entries in the file GrpAccessEntry
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmContextTable
- Writes the Context entries to the ObjectOutputStream specified.
- serialize(ObjectOutputStream) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeTable
- Stores the VacmViewTree entries in the file FamilyEntry
- serializeEngineBoots() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- This serializes the engine boots into the file
specified by the setSerializeFileName method.
- SERIOUS -
Static variable in class com.adventnet.utils.LogManager
-
- SERIOUS -
Static variable in class com.adventnet.snmp.mibs.MibOperations
- For setting the serious parsing level
- SERIOUS_MESSAGES -
Static variable in class com.adventnet.snmp.mibs.MibOperations
- For printing all the serious messages
- SESSION_REMOTE_HOST_UNKNOWN -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when the Session's remote host is not known.
- SessionTransportProvider - interface com.adventnet.management.transport.SessionTransportProvider.
- A basic interface which will be implemented for actual communication between
client and the server.
- SET -
Static variable in class com.adventnet.snmp.beans.RequestEvent
- Constant for Set Request
- SET_REQ_MSG -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for SNMP set request PDU type.
- set(SnmpOID, SnmpVar) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SnmpPDU pdu = new SnmpPDU();
SnmpVarBind varbind = new SnmpVarBind(oid, var);
pdu.addVariableBinding(varbind);
pdu.setCommand(SnmpAPI.SET_REQ_MSG);
SnmpPDU response_pdu = snmpSession.syncSend(pdu);
SnmpVar response_var = null;
if(response_pdu != null)
{
response_var = response_pdu.getVariable(0);
}
- set(String, String, byte) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead
SnmpPDU pdu = new SnmpPDU();
SnmpVar variable = SnmpVar.createVariable(setString, type);
SnmpOID oid = new SnmpOID(oidString);
SnmpVarBind varbind = new SnmpVarBind(oid, variable);
pdu.addVariableBinding(varbind);
pdu.setCommand(SnmpAPI.SET_REQ_MSG);
SnmpPDU response_pdu = snmpSession.syncSend(pdu);
SnmpVar var = null;
if(response_pdu != null)
{
var = response_pdu.getVariable(0);
}
- setAbsoluteCounters(boolean) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- sets whether counter values should be absolute - applies only for single
variable requests.
- setAcmUsed(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpACM
- This method is used to set the acmUsed flag.
- setAcmUsed(boolean) -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
- This method is used to set the vacmUsed flag.
- setAddress(InetAddress) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)SnmpPDU.getProtocolOptions();
opt.setRemoteAddress(address);
- setAgentAddr(String) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- sets the agent address as a string.
- setAgentAddress(InetAddress) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets Address of object generating trap.
- setApplet(Applet) -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- sets the applet instance for this protocoloptions.
- setApplet(Applet) -
Static method in class com.adventnet.utils.SnmpUtils
- The applet instance.
- setAppletContext(AppletContext) -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Sets the applet context to the user specified one.
- setArchiveStatus(boolean) -
Method in class com.adventnet.afp.log.FileLogWriter
- This will Set the archive status at runtime.If the status is true , then deleted file will
be moved to the archive else it will not be moved to archive.
- setAttemptComplete(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Enables the flag to get the complete data from the agent by splitting
the varbinds into multiple request.This can set if request pdu is very big.
- setAttemptPartial(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the boolean state of whether this target will try to get a
partial data from an agent if the request is a multi variable request.
- setAttemptPartial(boolean) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Deprecated. SnmpRequestServer cannot get partial data by enabling the
flag. It is specific for SnmpTarget bean which does synchronous comm..
- setAugmentedDisplay(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- set the status of table whether it is augumented table or of its
original table.
- setAuthKey(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the authentication key.
- setAuthParams(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the auth params value.
- setAuthPassword(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the authentication password.
- setAuthPassword(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 AuthPassword
- setAuthPassword(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 AuthPassword
- setAuthPassword(String) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set auth password
- setAuthPassword(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets authentication password for SNMPv3 authentication.
- setAuthProtocol(int) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the authentication Protocol to be used.
- setAuthProtocol(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 AuthProtocol
- setAuthProtocol(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 AuthProtocol
- setAuthProtocol(int) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set authProtocol
- setAuthProtocol(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the Authentication Protocol.
- setAutoActive(boolean) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- To make the poller to start polling automatically after setting either OID or
poll interval or after adding the first result listener.
- setAutoInformResponse(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the automatic response flag for the Inform Request.
- setAutoInformResponse(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- High-level API method to set the automatic response flag for the Inform
Request.
- setAutoInformResponse(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- High-level API method to set the automatic response flag for the Inform
Request.
- setBookMark() -
Method in class com.adventnet.snmp.snmp2.ASN1Parser
- This method sets the bookmark.
- setBroadCastEnable(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Calling this method with a "true" value will indicate that
this pdu is a broadcast pdu.
- setBroadCastEnable(boolean) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Calling this method with a "true" value will indicate that
the request is to be sent as a broadcast request.
- setBufferSize(int) -
Method in class com.adventnet.afp.log.FileLogWriter
- The buffer size is set for the corresponding buffer type .
- setBundleName(String) -
Static method in class com.adventnet.utils.SnmpUtils
- The bundle name of the resource bundle properties file.
- setCallbackthread(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets this to true if the user wants the callback to be
called from a seperate thread.
- setCallbackthread(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Enable or disable if the user wants the callback to be called from
a seperate thread.
- setCellValue(String, Object, int, int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Sets the value for the cell specified by the row and column index.
- setCharacterEncoding(String) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the Character encoding of the String values.
- setCharacterEncoding(String) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Set the Character Encoding to be used.
- setCharacterEncoding(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Set the Character Encoding to be used.
- setClassName(String) -
Method in class com.adventnet.afp.log.LoggerProperties
- To set the Logger implementation class to be used by the Logger.
- setClassName(String) -
Method in class com.adventnet.afp.log.LogWriterProperties
- The
setClassName
method is used to set the LogWriterClass that has to be used
for that module.
- setClientID(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- This method will indicate the id for source which sent this pdu
- setCodeBase(URL) -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Sets the codebase URL.
- setColumnsPolled(Vector) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Sets the columns that needs to be polled.
- setCommand(byte) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets command type of this PDU.
- setCommunity(String) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets community for outgoing SNMPv1 and SNMPv2c requests.
- setCommunity(String) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets community string received/sent.
- setCommunity(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target Community
- setCommunity(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target Community
- setCommunity(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the SNMP Community.
- setCommunityAuthentication(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Enables/Disables the community authentication flag.
- setCommunityEncoding(String) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the encoding to use for community string.
- setCommunityIndex(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- This method sets the community index value.
- setCommunityIndex(String) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- This methods sets the community index value.
- setCommunityIndex(String, String) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- This methods sets the community index value.
- setCommunityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunityName value associated with this object.
- setConnectionListener(ConnectionListener) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Subscribes for ConnectionListener.
- setContextEngineID(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunityContextEngineID value associated with this object.
- setcontextID(byte[]) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Deprecated. Replaced with setContextID(byte[] ctxtID)
- setContextID(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets context ID associated with the PDU.
- setContextID(byte[]) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the SNMP V3 contextID
- setContextID(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 contextID.
- setContextID(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 contextID
- setContextMatch(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Set the VacmAccessContextMatch value.
- setContextName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the context name associated with the SNMPv3 message.
- setContextName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the context name associated with the PDU
- setContextName(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunityContextName value associated with this object.
- setContextName(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- set the SNMP V3 Context name
- setContextName(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 Context name
- setContextName(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the SNMP V3 Context name
- setData(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets encoded data to be sent, or received.
- setDatabaseName(byte) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Used to set the database.
- setDataType(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Set the type in which the data has to be returned when the table data is got
using the getValueAt or getCellValue methods.By default these methods will return
table data as String objects.To get the table data as SnmpVar or SnmpVarBind object,
the respective constant can be set using setDataType() method.
- setDBOperations(DatabaseOperations) -
Method in class com.adventnet.snmp.snmp2.SnmpACM
-
- setDBOperations(DatabaseOperations) -
Method in class com.adventnet.snmp.snmp2.SecurityModelTable
- This method enables the users to set the their own implementation of
the "DatabaseOperations" interface.
- setDBOperations(DatabaseOperations) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- All the Database operations will be performed only through this
instance.
- setDBOperations(DatabaseOperations) -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
-
- setDebug(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Defines whether debugging output should be generated.
- setDebug(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method determines if debug output will be printed
- setDebug(boolean) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To enable or disable the Debug mode.
- setDebug(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Determines if debug output will be printed
- setDebug(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether debugging output should be generated to stdout.
- setDebugLevel(int) -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- sets debugLevel FATAL or CRITICAL or NON_CRITICAL.
- setDebugMessageLevel(int) -
Static method in class com.adventnet.snmp.mibs.MibOperations
- Sets the debug message level.
- setDefval(String) -
Method in class com.adventnet.snmp.mibs.MibNode
- Sets the defval as defined in the MIB.
- setDestination(ResultListener) -
Method in class com.adventnet.snmp.beans.RequestEvent
- This sets the Destination for the response.
- setDisplayName(String) -
Method in class com.adventnet.afp.log.LoggerImpl
- To set the display name of the Logger.
- setDNSLookup(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. since no lookup will be done unnecessarily.
- setDocumentBase(URL) -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Sets the document URL.
- setEngineBoots(int) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Sets the engineBoots value of the corresponding SNMP entity.
- setEngineBootsSerializeFileName(String) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the fileName into which the SNMPv3 engineBoots are to be stored
so that they are persistant.
- setEngineEntry(SnmpEngineEntry) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the SnmpEngineEntry reference.
- setEngineID(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Sets the engineID of the corresponding Snmp entity.
- setEngineID(byte[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 engineID value for v3
- setEngineTime(int) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Sets the engine time of the corresponding Snmp entity.
- setEnterprise(SnmpOID) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the enterprise OID.
- setErr(String) -
Static method in class com.adventnet.afp.log.LogPrintStream
- This method will open the new print stream for the System err messages.
- setErrindex(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets Error index for this PDU.
- setErrstat(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Set Error status for this PDU.
- setFamilyMask(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Set the vacmViewTreeFamilyMask value.
- setFamilyStatus(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Set the vacmViewTreeFamilyStatus value.
- setFamilyStorageType(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Set the StorageType associated with this VacmFamilyEntry
- setFamilyType(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmFamilyEntry
- Set the vacmViewTreeFamilyType value.
- setFileReadWrite(boolean) -
Static method in class com.adventnet.snmp.snmp2.SASClient
- Sets the fileWrite flag.
- setFilterMask(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Sets the filterMask value if the size of the mask value
is between 0 to 16.
- setFilterProfileName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Sets the filterProfileName value associated with this object.
- setFilterType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Sets the filterType value associated with this object.
- setFlushMode(String) -
Method in class com.adventnet.afp.log.FileLogWriter
- This will set the flush mode at runtime.
- setFont(Font) -
Static method in class com.adventnet.utils.SnmpUIUtils
- Sets the Default Font which will used for all the UI
components.
- setHeaderName(int, String) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the string value as the column header of the column given by the index.
- setIgnoreSpecificControlCodes(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- To set the value determining whether the new-line characters,
tabs and carriage returns are printed or their hex values.
- setIgnoreSpecificControlCodes(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the value determining whether the new-line characters,
tabs and carriage returns are printed or their hex values.
- setIgnoreSpecificControlCodes(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Used to set the value determining whether the new-line characters,
tabs and carriage returns are printed as they are or their hex values.
- setImportsParsingLevel(byte) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Used to set the level of parsing for the dependency MIB files.
- setIndex() -
Method in class com.adventnet.snmp.beans.ClippedTable
- adjust the oidList in stack for further operation
when getting rows from origin.
- setIndexForIndex() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Used to create a oidList from the index box ,push
that oidlist into index stack and polling the table.
- setIndexInd() -
Method in class com.adventnet.snmp.beans.ClippedTable
- adjust the oidList in stack for further operation
when getting rows starting with given index.
- setLatestReceived(int) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
-
- setLoadFromCompiledMibs(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Defines whether to load mib from compiled MIBs.
- setLoadFromCompiledMibs(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Defines whether to load mib from compiled MIBs.
- setLoadFromCompiledMibs(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to load mib from compiled MIBs.
- setLoadFromDatabase(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to load the MIB from DataBase.
- setLoadFromSerializedMibs(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Method defines whether to load MIB from serialized file.
- setLoadFromSerializedMibs(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Defines whether to load MIB from serialized file.
- setLoadFromSerializedMibs(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to load mib from serialized MIB file.
- setLoadMibsFromDatabase(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Defines whether to load mib from DataBase.
- setLoadMibsFromDatabase(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Defines whether to load mib from DataBase.
- setLocalAddresses(String[]) -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method sets the list of local addresses for which
the session should bind.
- setLocalAddresses(String[]) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
opt.setLocalAddresses(local_addrs);
- setLocalAddresses(String[]) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the local SNMP port number to listen on.
- setLocale(Locale) -
Static method in class com.adventnet.utils.SnmpUtils
- The locale based on which the properties file will be searcded.
- setLocalPort(int) -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method sets the local port on which the session should be
opened.
- setLocalPort(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
opt.setLocalPort(local_port);
- setLocalPort(int) -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- sets the localport at which this sasclient should be started.
- setLocalTime(long) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineEntry
-
- setLogInterface(LogInterface) -
Method in class com.adventnet.management.transport.TcpServerTransportImpl
- Sets the LogInterface object.
- setLogInterface(LogInterface) -
Method in class com.adventnet.management.transport.TcpClientTransportImpl
- Sets the logInterface to the specified one if any.
- setLogInterface(LogInterface) -
Method in interface com.adventnet.management.transport.TransportProvider
- Sets the log interface to the specified Log.
- setLogLevel(int) -
Method in class com.adventnet.afp.log.AbstractLogger
- The
setLogLevel
method is used to specify the Log level of the Logger.
- setLogLevel(int) -
Method in class com.adventnet.afp.log.LoggerProperties
- To set the logging level of the Logger.
- setLogLevel(int) -
Method in interface com.adventnet.afp.log.Logger
- The
setLogLevel
method is used to set the LogLevel of a Logger at runtime.
- setLogWriter(LogWriter) -
Method in class com.adventnet.afp.log.LoggerImpl
- The
setLogWriter
method is used to assign a LogWriter to the Logger.
- setMaxFileCount(int) -
Method in class com.adventnet.afp.log.FileLogWriter
- This will Set the maximum file count at runtime.The maximum number of files of same type under
the logs directory mentioned in the logging configuration file can be changed at
runtime by setting the number of lines using this method.
- setMaxLineCount(int) -
Method in class com.adventnet.afp.log.FileLogWriter
- This will Set the maximum line count at runtime.The maximum number of lines per file mentioned in
the logging configuration file can be changed at runtime by setting the number of lines
using this method.
- setMaxNumRows(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the maximum number of rows that can be processed,
default value is 1000.
- setMaxRepetitions(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets Max-Repetitions value for this PDU.
- setMaxRepetitions(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target max repetitions value for a getbulk request.
- setMaxRepetitions(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target max repetitions value for a getbulk request.
- setMibFileExtension(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Registers the extensions with which the MIB file is to be searched.
- setMibModules(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the MIB to be loaded in this applet/application.
- setMibModules(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To load the MIB in this applet/application.
- setMibModules(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the MIB loaded in this applet/application.
- setMibOperations(MibOperations) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Set the MibOperations.This can be used when the API user wants the
MibBrowser to use the localinstance of MibOperations instead of
the Static MibOperations shared by all the other beans.
- setMibPath(String) -
Method in class com.adventnet.snmp.beans.SnmpServer
- To set the search Path in which the loadMibModules() will search for the
MIB modules.
- setMibPath(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the search path in which the Mib Parser will search for the MIB modules.
- setMibPath(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Sets the search Path in which the Mib Parser will search for the
MIB modules.
- setModeOfGettingTable(int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Not for API users.set the mode of getting table
- setMsgFlags(byte) -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- This methods sets the message flags of the SNMPv3 message.
- setMsgID(int) -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Sets the message Id for the v3 packet
- setMsgMaxSize(int) -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Sets the message max size field for the SNMPV3 packet.
- setMsgVersion(int) -
Method in class com.adventnet.snmp.snmp2.SnmpMessage
- Sets snmp Version number in PDU
- setMultipleRevision(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Sets the Multiple revision for the MIB.
- setNext_1(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Not for API users.
- setNext(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Not for API users.
- setNonRepeaters(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets Non-Repeaters value for this PDU.
- setNonRepeaters(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target non-repeaters value for a getbulk request
Default is 0.
- setNonRepeaters(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target non-repeaters value for a getbulk request.
- setNotificationFiltering(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Enables/Disables the notification filtering.
- setNotifyTag(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Sets the snmpNotifyTag value associated with this object.
- setNotifyType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Sets the snmpNotifyType value associated with this object.
- setNotifyView(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Set the VacmAccessNotifyViewName.
- setNullTable() -
Method in class com.adventnet.snmp.snmp2.SnmpEngineTable
- Clears the list of SnmpEngineEntry objects.
- setNumCols(int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the number of columns to be visible in the SnmpTable panel.
- setNumericResult(long) -
Method in class com.adventnet.snmp.beans.ResultAdapter
- An empty implementation of the corresponding ResultListener method
- setNumericResult(long) -
Method in interface com.adventnet.snmp.beans.ResultListener
- The method is called in for responses with numeric valued data, e.g, COUNTER.
- setNumOfVisibleRows(int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the number rows to be visible in the SnmpTablePanel.
- setObject(Object) -
Method in class com.adventnet.snmp.beans.PropertyCustomizer
- Sets the object to be customized
- setObjectID(int, String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the object ID value at index based on specified string
- setObjectID(int, String) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- Set the object ID value at index based on specified string
- setObjectID(int, String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Sets the object ID value specified the string at the given index
- setObjectID(SnmpOID) -
Method in class com.adventnet.snmp.snmp2.SnmpVarBind
- Sets the object identifier in the SnmpVarBind.
- setObjectID(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the object ID specified by the String value.
- setObjectID(String) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- Set the object ID specified by the String value.
- setObjectID(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Sets the object ID value specified by the string
- setObjectIDList(String[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the list of object IDs based on the specified string array.
- setObjectIDList(String[]) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- Set the list of object IDs based on the specified string array.
- setObjectIDList(String[]) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Sets the column names of the table that needs to be polled.
- setObjectIDList(String[]) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the list of object IDs based on the specified string array.
- setObjectIDList(String[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Sets the list of object IDs specified by the string array
- setOIDPrefix(SnmpOID) -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- This is added to any Object ID that
does not begin with a '.'.
- setOut(String) -
Static method in class com.adventnet.afp.log.LogPrintStream
- This method will open the new print stream for the System out messages.
- setOverwriteCMI(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Defines whether to overwrite the existing compiled MIB files.
- setOverwriteCMI(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Defines whether to overwrite the existing compiled MIB files.
- setOverwriteCMI(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to overwrite the existing compiled files.
- setOverwriteDatabase(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to overwrite the existing database files.
- setOverwriteMibsInDatabase(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Defines whether to overwrite the MIB in the DataBase.
- setOverwriteMibsInDatabase(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Defines whether to overwrite the MIB in the DataBase.
- setOverwriteSerializedMibs(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to overwrite the existing serialized MIB files.
- setOwnKeyChange(boolean) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the ownKeyChange flag.
- setPacketBufferSize(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the Datagram Buffer Size used for receiving SNMP packets.
- setParameter(String, String) -
Method in class com.adventnet.snmp.snmp2.SASAppletStub
- Sets the name-value pair in the applet parameter.
- setParams(String, String, String) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To set multiple parameters like TargetHost,MibModule and TableOID
- setParams(String, String, String, String, String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- To set Multiple parameters like TargetHost,Port,Community,MibModule and OID.
- setParams(String, String, String, String, String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set Multiple parameters like TargetHost,Port,Community,MibModule and OID.
- setParams(String, String, String, String, String[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- To set Multiple parameters like TargetHost,Port,Community,MibModule and OIDList.
- setParams(String, String, String, String, String[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set Multiple parameters like TargetHost,Port,Community,MibModule and OIDList.
- setParsingLevel(byte) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Used to set the level of parsing.
- setPeername(String) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
opt.setRemoteHost(peername);
- setPollInterval(int) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- set the polling interval in seconds
- setPollInterval(int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To set the polling interval in seconds.
- setPort(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the local SNMP port number to listen on.
- setPortWithExceptionMsg(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the local SNMP port number to listen on and throws SnmpException
in case of BindException.
- setPrincipal(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 Principal
- setPrincipal(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 username
- setPrincipal(String) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to get user name
- setPrincipal(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the Principal or authentication user name.
- setPrivKey(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the privacy key.
- setPrivParams(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the priv params field.
- setPrivPassword(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the privacy password.
- setPrivPassword(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 PrivPassword
- setPrivPassword(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 PrivPassword
- setPrivPassword(String) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set priv password
- setPrivPassword(String) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the privacy password.
- setPrivProtocol(int) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the privacy protocol to be used.
- setProtocol(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. Since all the SNMP communications go through
a single transport provider, this is not needed.
- setProtocol(int) -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- sets the protocol value.
- setProtocolData(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTransportPacket
- Sets the protocol data on the SnmpTransportPacket
- setProtocolOptions(ProtocolOptions) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- This associates the ProtocolOptions with this SnmpSession.
- setProtocolOptions(ProtocolOptions) -
Method in class com.adventnet.snmp.snmp2.SnmpTransportPacket
- Sets the protocol options on the SnmpTransportPacket
- setProtocolOptions(ProtocolOptions) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- This sets the transport mechanism's protocol options.
- setReadDesc(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the flag to read descriptions from compiled mib modules.
- setReadDesc(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the flag to read descriptions from compiled mib modules.
- setReadDesc(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Sets the flag for reading the descriptions from compiled mib modules.
- setReadView(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Set the VacmAccessReadViewName.
- setReceiveBufferSize(int) -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method sets the buffer size of this receiver when
the receiver is ready for receiving the next packet.
- setReceiveBufferSize(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. instead use the setReceiveBufferSize method
available in UDPProtocolOptions.
- setReceiveBufferSize(int) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the buffer size of this SnmpServer.
- setReceiveBufferSize(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- This method sets the buffer size of this SnmpTrapReceiver.
- setReEncode(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Controls ASN.1 encoding (default true).
- setRemoteAddress(InetAddress) -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method sets the remoteAddress.
- setRemoteHost(String) -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method sets the remoteHost to this UDPProtocolOptions object.
- setRemoteHost(String) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)SnmpPDU.getProtocolOptions();
opt.setRemoteHost(host);
- setRemoteHost(String) -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- sets the remote host.
- setRemotePort(int) -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method sets the remotePort to which the SNMP packets should
be sent.
- setRemotePort(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)snmpSession.getProtocolOptions();
opt.setRemotePort(port);
- setRemotePort(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Deprecated. use the following instead.
UDPProtocolOptions opt = (UDPProtocolOptions)SnmpPDU.getProtocolOptions();
opt.setRemotePort(port);
- setRemotePort(int) -
Method in class com.adventnet.snmp.snmp2.SASProtocolOptions
- sets the remotePort.
- setReport(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the status of report flag.
- setReqid(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets Request id for this PDU.
- setRequestID(int) -
Method in class com.adventnet.snmp.beans.RequestEvent
- This sets the Request ID value.
- setResult(ResultEvent) -
Method in class com.adventnet.snmp.beans.ResultAdapter
- An empty implementation of the corresponding ResultListener method
- setResult(ResultEvent) -
Method in interface com.adventnet.snmp.beans.ResultListener
- The method is always called in for ResultEvent generation.
- setRetries(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets number of retries before timeout.
- setRetries(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets number of retries for this PDU before timeout.
- setRetries(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target retries value.
- setRetries(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To Set the SNMP target retries value.
- setRetrievalMode(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To set the mode of retrieval.
- setRowStatus(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Sets the snmpNotifyFilterProfileRowStatus value associated with this object.
- setRowStatus(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Sets the snmpNotifyRowStatus value associated with this object.
- setRowStatus(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Sets the snmpNotifyFilterRowStatus value associated with this object.
- setRowStatus(int) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunityStatus value associated with this object.
- setSASProtocol(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. use the following instead.
SASProtocolOptions opt = new SASProtocolOptions();
opt.setApplet(applet);
opt.setProtocol(SASClient.TCP_PROTOCOL); //or SASClient.HTTP_PROTOCOL
snmpSession.setProtocolOptions(opt);
snmpSession.open();
- setSearchPath(String) -
Static method in class com.adventnet.utils.SnmpUtils
- The search path for the properties file.
- setSecLevelForTimeSync(byte) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the securityLevel to use when doing
a V3 timeSync for a authPriv user.
- setSecLevelForTimeSync(byte) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the securityLevel to use when doing
a V3 timeSync for a authPriv user.
- setSecurity(SecurityModelEntry, int) -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Set securityModel object is associated with the message.
- setSecurityLevel(byte) -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Sets the security level associated with this securityEntry.
- setSecurityLevel(byte) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the security level associated with this securityEntry.
- setSecurityLevel(byte) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the security level for this user entry.
- setSecurityLevel(byte) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 SecurityLevel.The value will be 0 ,1 or 3.
- setSecurityLevel(byte) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 SecurityLevel.The value will be 0 ,1 or 3.
- setSecurityLevel(byte) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set security level
- setSecurityModel(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the securityModel to be associated with the PDU.
- setSecurityModel(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP V3 SecurityModel
- setSecurityModel(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP V3 SecurityModel
- setSecurityModel(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the SNMP V3 SecurityModel
- setSecurityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Sets the security name by taking in the security model independent
security name as the argument.
- setSecurityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunitySecurityName value associated with this object.
- setSecurityName(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the security name by taking the byte array as argument.
- setSecurityProvider(SecurityProvider) -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
-
- setSendPDUByGroup(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- set the state whether the PDUs should be grouped and send all PDUs
as single PDU.After setting it to true this instance will be added
to vector.This should be set to false, if this instance is no longer used.
- setSendTimeoutEvents(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This should be set to true if the listener should be notified of the
timeout events in case if the request timesout.
- setSendTimeoutEvents(boolean) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the boolean state of whether this target will send timeout
events to registered listeners or not
- setSerializedMibFileName(String) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Method defines the name of the Serialized MIB File.
- setSerializedMibFileName(String) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Defines the name of the Serialized MIB File.
- setSerializedMibFileName(String) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines the name with which the serialized MIB file is to be stored.
- setSerializeFileName(String) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the fileName into which the SNMPv3 configuration tables are to
be serialized.
- setSerializeMibs(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Defines whether to serialize the MibModule.
- setSerializeMibs(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- method defines whether to serialize the MibModule
This flag should be set before loading the MIBs.
- setSerializeMibs(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Defines whether to serialize the MibModule.
- setShowImportedIndex(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Sets the showImportedIndex boolean value.
- SetSnmpEnableAuthenTraps(int) -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Sets the status of the snmpEnableAuthenTraps variable to be enabled or
disabled.
- setSnmpEngineBoots(int) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the SnmpEngineBoots (number of times this SNMP engine
has booted of this SNMP entity.
- setSnmpEngineID(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the authoritative SnmpEngineID for this SNMP entity.
- setSnmpEngineID(byte[]) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the SnmpEngineID for this SNMP entity.
- setSnmpEngineTime(int) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the SnmpEngineTime, the time in seconds after this SNMP engine
has booted.
- setSnmpOID(SnmpOID) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the SnmpOID
- setSnmpOID(SnmpOID) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Sets the SnmpOID.
- setSnmpOIDList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the list of object IDs as the given array of SnmpOID
- setSnmpOIDList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the list of object IDs given as an array of SnmpOID instances.
- setSnmpOIDList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the list of object IDs given as an array of SnmpOIDs
- setSnmpTargetAddrMMS(int) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Sets the snmpTargetAddrTMMS value associated with this object.
- setSnmpTargetAddrTMask(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Sets the snmpTargetAddrTMask value associated with this object.
- setSnmpVersion(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target SNMP Version.
- setSnmpVersion(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target SNMP Version.
- setSnmpVersion(int) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set version
- setSnmpVersion(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Sets the SNMP Version
- setSocketParms(int, int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. since a new transportProvider implementation for
udp has been added, this method no longer becomes necessary.
- setSpecificType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets Specific trap type.
- setStartLocalPort(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Deprecated. now the "open(Applet)" method will throw an
SnmpException if it is unable to connect to the SAServer. When such
an exception is received, the user should decide whether "open(void)"
method should be called or not.
- setStorageType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Sets the snmpNotifyFilterProfileStorType value associated with this object.
- setStorageType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Sets the snmpNotifyStorageType value associated with this object.
- setStorageType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Sets the snmpNotifyFilterStorageType value associated with this object.
- setStorageType(int) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunityStorageType value associated with this object.
- setStorageType(int) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the USM StorageType associated with this USMUserEntry.
- setStorageType(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Set the VACM Access StorageType associated with this VacmAccessEntry
- setStringOID(String) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Not for API users.
- setStringResult(String) -
Method in class com.adventnet.snmp.beans.ResultAdapter
- An empty implementation of the corresponding ResultListener method
- setStringResult(String) -
Method in interface com.adventnet.snmp.beans.ResultListener
- The method is called in responses with String valued data,
e.g, OCTET STRING.
- setStringValueAt(String, int, int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the value for the cell specified by the row and column index.
- setsubOidList() -
Method in class com.adventnet.snmp.beans.ClippedTable
- Not for API users.
- setSysErrProps(Properties) -
Static method in class com.adventnet.afp.log.LogPrintStream
- This method will set all the system err properties to their respective variables.
- setSysOutProps(Properties) -
Static method in class com.adventnet.afp.log.LogPrintStream
- This method will set all the system out properties to their respective variables.
- setTableOID(String) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Sets the table OID to be used with this SnmpTable instance.
- setTableOID(String) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Specify table to be used with this SnmpTable instance.
- setTableOIDWoStart(String) -
Method in class com.adventnet.snmp.beans.SnmpTable
- To set the table OID without starting polling.
- setTargetAddrEntry(SnmpTargetAddrEntry) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Sets the snmpTargetAddrEntry value associated with this object.
- setTargetHost(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the SNMP target hostname
- setTargetHost(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target hostname
- setTargetHost(String) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set target host
- setTargetPort(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- set the SNMP target port number
- setTargetPort(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target port number
- setTargetPort(int) -
Method in interface com.adventnet.snmp.beans.CustomizerTemplate
- This needs to be implemented to set target port
- setThrowFileNotFound(boolean) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Deprecated.
- setTimeout(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the timeout value.
- setTimeout(int) -
Method in class com.adventnet.snmp.snmp2.SASClient
- For setting the timeOut value for a synchronous SASClient operation.
- setTimeout(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the timeout value.
- setTimeout(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target timeout value
- setTimeout(int) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To Set the SNMP target timeout value in Seconds.
- setTimeoutInMilliSec(int) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the timeout value which should be given in milliseconds.
- setTimeoutPolicy(TimeoutPolicy) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- sets the TimeoutPolicy for this SnmpSession.
- setTimeToWait(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the inter-packet delay time.
- setTimeToWait(int) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the inter-packet delay time.
- setTimeWindow(int) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the time window in which messages should be accepted by this
SNMP engine
- setTransportHome(String) -
Static method in class com.adventnet.management.transport.TransportUtil
-
- setTransportProvider(String) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- This method sets the transportProvider classname, which will
be used for communication purposes.
- setTransportTag(byte[]) -
Method in class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Sets the snmpCommunityTransportTag value associated with this object.
- setTrapAuthEnable(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Specify whether traps should be authenticated while receiving
SNMPv3 trap messages.
- setTrapAuthEnable(boolean) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Specify whether traps should be authenticated while receiving
SNMPV3 trap messages.
- setTrapType(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the generic type of the Trap.
- setupStdOutErr() -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Deprecated. please use the logging framework instead.
- setupStdOutErr(String) -
Static method in class com.adventnet.snmp.snmp2.SnmpAPI
- Deprecated. please use the logging framework instead.
- setUpTime(long) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the timeStamp of the object which has to generate the trap.
- setUserCloneFrom(int[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the USM UserCloneFrom OID for this USMUserEntry.
- setUserName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets the principal for SNMPv3 messages.
- setUserName(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets the principal on whose behalf SNMPv3 requests are to be made.
- setUserPublic(byte[]) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the USM UserPublic associated with this USMUserEntry.
- setUserStatus(int) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Sets the USM UserStatus associated with this USMUserEntry.
- setUSMUtils(Object) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- The Utils object should be set, so that it can be used for
encryption purpose.
- setV3ConfigFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.SecurityModelTable
- Enables/disables the V3 Configuration flag.This flag should be
enabled when the user needs to use a configuration table in
the case of V3 database.
- setV3ConfigFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Sets the V3 configuration flag.
- setV3ConfigTable(String) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the configured tableName specified in the case of V3Database.
- setV3ConfigTable(String) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Sets the configured tableName specified in the case of V3Database.
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpACM
-
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Sets the Database flag in the case of V3.
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.SecurityModelTable
- Enables/disables the v3 database flag.
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.SnmpEngineTable
- Sets the Database flag.
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.usm.USMUserTable
- Sets the Database flag.
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.snmp2.vacm.SnmpVacm
-
- setV3DatabaseFlag(boolean) -
Method in class com.adventnet.snmp.beans.SnmpServer
- If you need to use database support for V3 , set this flag to true.
- setVacmAccessStatus(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Set the vacmAccessStatus associated with this VacmAccessEntry.
- setVacmGroupName(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Set the groupName value.
- setVacmGroupStatus(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Set the vacmSecurityToGroupStatus associated with this VacmGroupEntry.
- setVacmGroupStorageType(int) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmGroupEntry
- Set the StorageType associated with this VacmGroupEntry
- setvalue(Object, int, int) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Sets the value for the cell specified by the row and column index.
- setValueAt(Object, int, int) -
Method in class com.adventnet.snmp.beans.SnmpTable
- Sets the value for the cell specified by the row and column index.
- setVarBindCount(int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Set the number of varbinds per request to get the
complete data from the agent by splitting
the varbinds into multiple request in case if the request pdu is very big.
- setVariable(int, SnmpVar) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets SNMP variable at specified index in PDUs list of variables,
to value var.
- setVariable(SnmpVar) -
Method in class com.adventnet.snmp.snmp2.SnmpVarBind
- Sets the variable in the SnmpVarBind.
- setVersion(int) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets snmp version for outgoing requests.
- setVersion(int) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets snmp Version number in PDU.
- setWriteCommunity(String) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Sets writeCommunity for outgoing requests.
- setWriteCommunity(String) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Sets writeCommunity string received/sent.
- setWriteCommunity(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Sets the SNMP target write Community to be used for set requests
- setWriteCommunity(String) -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- To set the SNMP target write Community to be used for set requests
- setWriteView(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmAccessEntry
- Set the VacmAccessWriteViewName.
- severity -
Variable in class com.adventnet.snmp.beans.ParsedTrapEvent
- The severity of this event,
viz.
- severityInt(String) -
Static method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the numeric value for corresponding String severity value
All - 1
Critical - 2
Major - 3
Minor - 4
Warning - 5
Clear - 6
Info - 7
- severityStr() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the severity string value
- severityStr(int) -
Static method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the String value for corresponding Numeric severity value
All - 1
Critical - 2
Major - 3
Minor - 4
Warning - 5
Clear - 6
Info - 7
- SHA_AUTH -
Static variable in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Constant for SNMPV3 usmUser SHA AuthProtocol.
- SHA_AUTH -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constants USM Authentication
- showErrorMessage(String) -
Method in class com.adventnet.snmp.beans.SnmpTable
-
- showErrorMessage(String) -
Method in class com.adventnet.snmp.beans.ClippedTable
-
- SNMP_ERR_AUTHORIZATIONERROR -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_AUTHORIZATIONERROR -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:AuthorizationError
- SNMP_ERR_BADVALUE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_BADVALUE -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error: Bad Value
- SNMP_ERR_COMMITFAILED -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_COMMITFAILED -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:commitFailed
- SNMP_ERR_GENERR -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_GENERR -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:genErr
- SNMP_ERR_INCONSISTENTNAME -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_INCONSISTENTNAME -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:inconsistentName
- SNMP_ERR_INCONSISTENTVALUE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_INCONSISTENTVALUE -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:inconsistentValue
- SNMP_ERR_NOACCESS -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_NOACCESS -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:No Access
- SNMP_ERR_NOCREATION -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_NOCREATION -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:errNotification
- SNMP_ERR_NOERROR -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_NOERROR -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error No Error
- SNMP_ERR_NOSUCHNAME -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_NOSUCHNAME -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error: No Such Name
- SNMP_ERR_NOTWRITABLE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_NOTWRITABLE -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:notWritable
- SNMP_ERR_READONLY -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_READONLY -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error: ReadOnly
- SNMP_ERR_RESOURCEUNAVAILABLE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_RESOURCEUNAVAILABLE -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:resourceUnavailable
- SNMP_ERR_TOOBIG -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_TOOBIG -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error: Too Big
- SNMP_ERR_UNDOFAILED -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_UNDOFAILED -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:undoFailed
- SNMP_ERR_WRONGENCODING -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_WRONGENCODING -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:WrongEncoding
- SNMP_ERR_WRONGLENGTH -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_WRONGLENGTH -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:WrongLength
- SNMP_ERR_WRONGTYPE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_WRONGTYPE -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:WrongType
- SNMP_ERR_WRONGVALUE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP error value.
- SNMP_ERR_WRONGVALUE -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when there is an SNMP Error:WrongValue
- SNMP_NOT_INIT -
Static variable in class com.adventnet.snmp.beans.ErrorMessages
- Error Code Constant
This is set when the class SnmpAPI is not initialized.
- SNMP_PORT -
Variable in class com.adventnet.snmp.snmp2.SnmpAPI
- The snmp port value of 161 for UDP.
- SNMP_TRAP_PORT -
Variable in class com.adventnet.snmp.snmp2.SnmpAPI
- The trap port value of 162 for UDP.
- SNMP_VARIABLE_BINDING_DATA -
Static variable in class com.adventnet.snmp.beans.SnmpTable
- Constant to specify the format in which the data has to be returned.
- SNMP_VARIABLE_DATA -
Static variable in class com.adventnet.snmp.beans.SnmpTable
- Constant to specify the format in which the data has to be returned.
- SNMP_VERSION_1 -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for setting SNMP Version 1.
- SNMP_VERSION_2 -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for setting SNMP Version 2 (Not supported).
- SNMP_VERSION_2C -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for setting SNMP Version 2c.
- SNMP_VERSION_3 -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Constant for the SNMP Version 3.
- Snmp3Message - class com.adventnet.snmp.snmp2.Snmp3Message.
- This class encapsulates a v3 message.
- Snmp3Message() -
Constructor for class com.adventnet.snmp.snmp2.Snmp3Message
-
- Snmp3Message(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.Snmp3Message
- Creates an Snmp3Message object initialised with the given byte array.
- Snmp3Message(byte[], SecurityProvider) -
Constructor for class com.adventnet.snmp.snmp2.Snmp3Message
- Creates an Snmp3Message object initialised with the given byte array
and security provider.
- SnmpACM - class com.adventnet.snmp.snmp2.SnmpACM.
- This class is used for ACM implementation and provides the abstract method
isAccessAllowed which does the access verifications.
- SnmpACM() -
Constructor for class com.adventnet.snmp.snmp2.SnmpACM
-
- SnmpAPI - class com.adventnet.snmp.snmp2.SnmpAPI.
-
The SnmpAPI class is a root class for AdventNet SNMP API.
- SnmpAPI() -
Constructor for class com.adventnet.snmp.snmp2.SnmpAPI
- Creates a new SnmpAPI instance and initialises the authoritative
snmpEngineID, snmpEngineBoots, snmpEngineTime and the providers,
SecurityProvider and ACMProvider.
- SnmpAPI(boolean) -
Constructor for class com.adventnet.snmp.snmp2.SnmpAPI
- Creates a new SnmpAPI instance and initialises the authoritative
snmpEngineID, snmpEngineBoots, snmpEngineTime and the providers,
SecurityProvider and ACMProvider.
- SnmpBits - class com.adventnet.snmp.snmp2.SnmpBits.
- Class of SNMP Bits Variable - Sub-class of SnmpString.
- SnmpBits(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpBits
- Constructs a new SnmpBits by taking an octet string.
- SnmpBits(String, int) -
Constructor for class com.adventnet.snmp.snmp2.SnmpBits
- Constructs a new SnmpBits by taking a string value and the radix.
- SnmpBitstring - class com.adventnet.snmp.snmp2.SnmpBitstring.
- Class of SNMP Bitstring Variable - Sub-class of SnmpVar.
- SnmpBitstring(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpBitstring
- Constructs a new SnmpBitstring by taking an octet string.
- SnmpBitstring(byte[], int) -
Constructor for class com.adventnet.snmp.snmp2.SnmpBitstring
- This takes a byte array and encodes.
- SnmpBitstring(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpBitstring
- Constructs a new SnmpBitstring taking a string instance as
its argument.
- SnmpClient - interface com.adventnet.snmp.snmp2.SnmpClient.
- This is the interface implemented by client programs that wish to
use callback, authentication, and debugging functions of the API.
- SnmpCommunityEntry - class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry.
- The SnmpCommunityEntry holds the information about a particular community string.
- SnmpCommunityEntry() -
Constructor for class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Constructs a default SnmpCommunityEntry with default index as "public".
- SnmpCommunityEntry(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Constructs a new SnmpCommunityEntry with the specified
snmpCommunityIndex.
- SnmpCommunityEntry(String) -
Constructor for class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Constructs a new SnmpCommunityEntry with the specified
snmpCommunityIndex.
- SnmpCommunityEntry(String, String) -
Constructor for class com.adventnet.snmp.snmp2.security.community.SnmpCommunityEntry
- Constructs a new SnmpCommunityEntry with the specified
snmpCommunityIndex.
- SnmpCommunityTable - class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable.
- This class maintains a list of all SnmpCommunityEntry objects and
provides the methods to operate on the list.
- SnmpCommunityTable() -
Constructor for class com.adventnet.snmp.snmp2.security.community.SnmpCommunityTable
-
- SnmpCounter - class com.adventnet.snmp.snmp2.SnmpCounter.
- Class of SNMP Counter Variable - Sub-class of SnmpUnsignedInt.
- SnmpCounter(long) -
Constructor for class com.adventnet.snmp.snmp2.SnmpCounter
- Constructor requires a long as its argument.
- SnmpCounter64 - class com.adventnet.snmp.snmp2.SnmpCounter64.
- Class of SNMP 64 bit COUNTER Variable.
- SnmpCounter64(BigInteger) -
Constructor for class com.adventnet.snmp.snmp2.SnmpCounter64
- The constructor takes a BigInteger as its argument.
- SnmpCounter64(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpCounter64
- This constructor takes a byte array as argument.
- SnmpCounter64(long[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpCounter64
- The constructor takes a long array of dimension 2 as its argument.
- SnmpEngineEntry - class com.adventnet.snmp.snmp2.SnmpEngineEntry.
- This class represents a particular SNMP entity and provides a unique
mapping between the internet address and port of an entity to the engineID.
- SnmpEngineEntry(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Constructs a new SnmpEngineEntry which represents a particular
SnmpV3 entity for the specified engineName.
- SnmpEngineEntry(String, int) -
Constructor for class com.adventnet.snmp.snmp2.SnmpEngineEntry
- Constructs a new SnmpEngineEntry which represents a particular
SnmpV3 entity for the specified host and port.
- SnmpEngineTable - class com.adventnet.snmp.snmp2.SnmpEngineTable.
- The SnmpEngineTable maintains a lsit of SnmpEngineEntry objects and
provides methods to operate on list.
- SnmpException - exception com.adventnet.snmp.snmp2.SnmpException.
- Class of SNMP Exception - to catch and report SNMP errors.
- SnmpException() -
Constructor for class com.adventnet.snmp.snmp2.SnmpException
- Constructs an SnmpException with no detailed message.
- SnmpException(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpException
- Constructs an SnmpException with the specifc detail message.
- SnmpGauge - class com.adventnet.snmp.snmp2.SnmpGauge.
- Class of SNMP Gauge Variable - Sub-class of SnmpUnsignedInt.
- SnmpGauge(long) -
Constructor for class com.adventnet.snmp.snmp2.SnmpGauge
- Constructs a new SnmpGauge which takes a long as its argument.
- SNMPGET -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP get request.
- SNMPGET -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP get request.
- snmpGet() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the target and returns as a string
the SNMP variable identified by the first Object Identifier
stored in this SnmpTarget instance.
- snmpGet(SnmpOID) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP variable identified by specified Object Identifier.
- snmpGetAllList() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets all instances of variables in the OID list.
- snmpGetAllVariableBindings() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets all instances of variables in the OID list.
- snmpGetAllVariables() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets all instances of variables in the OID list.
- SNMPGETBULK -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP V2 Get Bulk request.
- SNMPGETBULK -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP V2 Get Bulk request.
- snmpGetBulkList() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Get bulk on list of variables in the OID list.
- snmpGetBulkVariableBindings() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Get bulk on list of variables in the OID list.
- snmpGetBulkVariables() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Get bulk on list of variables in the OID list.
- snmpGetList() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the agent and returns the list of SNMP variable bindings
from the agent using the Object Identifier
list previously set in this SnmpTarget instance.
- snmpGetList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the list of SNMP variables identified by the Object Identifier
list stored in this SnmpTarget instance.
- SNMPGETNEXT -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP get next request.
- SNMPGETNEXT -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP get next request.
- snmpGetNext() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the target and returns as a string the
next SNMP variable identified by the first Object Identifier
stored in this SnmpTarget instance.
- snmpGetNext(SnmpOID) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP variable identified by specified Object Identifier.
- snmpGetNextList() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the agent and returns the list of SNMP variable bindings
from the agent using the Object Identifier list previously set in
this SnmpTarget instance.
- snmpGetNextList(SnmpOID[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the list of SNMP variables identified by the Object Identifier
list stored in this SnmpTarget instance.
- snmpGetNextVariable() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the target and returns
the SNMP variable identified by the first Object Identifier
stored in this SnmpTarget instance.
- snmpGetNextVariableBinding() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the target and returns
the SNMP variable identified by the first Object Identifier
stored in this SnmpTarget instance.
- snmpGetNextVariableBindings() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the agent and returns the list of SNMP variable bindings
from the agent using the Object Identifier
list previously set in this SnmpTarget instance.
- snmpGetNextVariables() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the agent and returns the list of SNMP variable bindings
from the agent using the Object Identifier list previously set in this
SnmpTarget instance.
- snmpGetVariable() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the target and returns
the SNMP variable identified by the first Object Identifier
stored in this SnmpTarget instance.
- snmpGetVariableBinding() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the target and returns
the SNMP variable identified by the first Object Identifier
stored in this SnmpTarget instance.
- snmpGetVariableBindings() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the agent and returns the list of SNMP variable bindings
from the agent using the Object Identifier
list previously set in this SnmpTarget instance.
- snmpGetVariables() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Queries the agent and returns the list of SNMP variable bindings
from the agent using the Object Identifier list previously set
in this SnmpTarget instance.
- SnmpGroup - class com.adventnet.snmp.snmp2.SnmpGroup.
- This class maintains the counter valus for SnmpGroup.
- SNMPINFORM -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP V2 INFORM request.
- SNMPINFORM -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP V2 INFORM request.
- SnmpInt - class com.adventnet.snmp.snmp2.SnmpInt.
- Class of SNMP Integer Variable - Sub-class of SnmpVar
This class can be used to created a SnmpVar object of type SnmpInt.
- SnmpInt(int) -
Constructor for class com.adventnet.snmp.snmp2.SnmpInt
- Constructs a new SnmpInt object by taking an integer value
as argument.
- SnmpIpAddress - class com.adventnet.snmp.snmp2.SnmpIpAddress.
- Class of SNMP IpAddress Variable - Sub-class of SnmpVar.
- SnmpIpAddress(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpIpAddress
- Constructs a new SnmpIpAddress by accepting the raw
IP address - 4 bytes.
- SnmpIpAddress(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpIpAddress
- Constructs a new SnmpIpAddress with the specified host name
or IP address as a string.
- SnmpMessage - class com.adventnet.snmp.snmp2.SnmpMessage.
- This class encapsulates a v1 or v2c Snmp Message.
- SnmpMessage(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpMessage
- Constructs an SnmpMessage initialized with SNMP packet message
byte array data.
- SnmpNetworkAddress - class com.adventnet.snmp.snmp2.SnmpNetworkAddress.
- Class of SNMP NetworkAddress Variable - Sub-class of SnmpIpAddress.
- SnmpNetworkAddress(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNetworkAddress
- Constructs a new SnmpNetworkAddress by accepting the raw IP address
- 4 bytes.
- SnmpNetworkAddress(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNetworkAddress
- Constructs a new SnmpNetworkAddress by accepting the host name
or IP address as a string.
- SnmpNotifyEntry - class com.adventnet.snmp.snmp2.SnmpNotifyEntry.
- The SnmpNotifyEntry selects a set of management targets
which should receive notifications, as well as the type of
notification which should be sent to each selected
management target.
- SnmpNotifyEntry(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Constructs a new SnmpNotifyEntry with the specified
snmpNotifyName.
- SnmpNotifyFilterEntry - class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry.
- An element of a filter profile.
- SnmpNotifyFilterEntry(byte[], int[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Constructs a new SnmpNotifyFilterEntry with the specified
SnmpFilterProfileEntry and the SnmpNotifyFilterSubtree.
- SnmpNotifyFilterProfileEntry - class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry.
- The SnmpNotifyFilterProfileEntry selects a set of management targets
which should receive notifications, as well as the type of
notification that should be sent to each selected
management target.
- SnmpNotifyFilterProfileEntry(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Constructs a new SnmpNotifyFilterProfileEntry with the specified
SnmpTargetParamsEntry.
- SnmpNotifyFilterProfileTable - class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable.
- This class maintains a list of all SnmpNotifyFilterProfileEntry objects and
provides methods to operate on the list.
- SnmpNotifyFilterProfileTable(SnmpTargetParamsTable) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileTable
- Constructs a new SnmpNotifyFilterProfileTable with the specified
SnmpTargetParamsTable.
- SnmpNotifyFilterTable - class com.adventnet.snmp.snmp2.SnmpNotifyFilterTable.
- This class maintains a list of filterProfiles used to determine
whether particular management targets should receive particular
notifications.
- SnmpNotifyTable - class com.adventnet.snmp.snmp2.SnmpNotifyTable.
- This class maintains a list of all SnmpNotifyEntry objects and
provides methods to operate on the list.
- SnmpNsap - class com.adventnet.snmp.snmp2.SnmpNsap.
- Class of SNMP NSAP Variable - Sub-class of SnmpString.
- SnmpNsap(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNsap
- Constructor : Takes an octet string.
- SnmpNsap(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNsap
- Constructor takes a String object as its argument.
- SnmpNull - class com.adventnet.snmp.snmp2.SnmpNull.
- Class of SNMP Null Variable - Sub-class of SnmpVar.
- SnmpNull() -
Constructor for class com.adventnet.snmp.snmp2.SnmpNull
- Creates an SnmpNull object with the value 0.
- SnmpNull(byte) -
Constructor for class com.adventnet.snmp.snmp2.SnmpNull
- Creates an SnmpNull object.
- SnmpOID - class com.adventnet.snmp.snmp2.SnmpOID.
- Class of SNMP Object ID - Sub-class of SnmpVar
This class can be used to create an SnmpVar object of type SnmpOID.
- SnmpOID(int[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpOID
- Constructs a new SnmpOID by taking an array of ints as an argument.
- SnmpOID(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpOID
- Constructs a new SnmpOID which requires the argument to be a
String OID of the form .N.N.N, or N.N.N.
- SnmpOpaque - class com.adventnet.snmp.snmp2.SnmpOpaque.
- Class of SNMP Opaque Variable - Sub-class of SnmpString.
- SnmpOpaque(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpOpaque
- Constructs a new SnmpOpaque object by taking a byte[].
- SnmpOpaque(SnmpVar) -
Constructor for class com.adventnet.snmp.snmp2.SnmpOpaque
- Snmpvar constructor.
- SnmpOpaque(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpOpaque
- Constructs a SnmpOpaque object by taking a string.
- SnmpPDU - class com.adventnet.snmp.snmp2.SnmpPDU.
- The SnmpPDU class represents the SNMP PDU used in protocol operations.
- SnmpPDU() -
Constructor for class com.adventnet.snmp.snmp2.SnmpPDU
- Creates a new SnmpPDU instance.
- SnmpPoller - class com.adventnet.snmp.beans.SnmpPoller.
-
This class is an SNMP Poller bean for automatic polling of one or more
variables from a given remote agent.
- SnmpPoller() -
Constructor for class com.adventnet.snmp.beans.SnmpPoller
- This constructor is used for polling data applications.
- SnmpPoller(Applet) -
Constructor for class com.adventnet.snmp.beans.SnmpPoller
- This constructor is used for applets.
- SnmpPoller(int, ProtocolOptions) -
Constructor for class com.adventnet.snmp.beans.SnmpPoller
- This constructor is used for applications which use protocols
other than UDP/IP.
- SnmpPollerBeanInfo - class com.adventnet.snmp.beans.SnmpPollerBeanInfo.
- This class is a beaninfo for the SNMP Poller bean.
- SnmpPollerBeanInfo() -
Constructor for class com.adventnet.snmp.beans.SnmpPollerBeanInfo
-
- snmpPropertyChanged(SnmpPropertyChangeEvent) -
Method in interface com.adventnet.snmp.beans.SnmpPropertyListener
- Gets called when the beans property
like targetHost,targetPort etc are changed
- SnmpPropertyChangeEvent - class com.adventnet.snmp.beans.SnmpPropertyChangeEvent.
-
This class is the event generated by bean components whenever there is
change in snmp parameters of the beans,
e.g.
- SnmpPropertyChangeEvent(Object, int, Object) -
Constructor for class com.adventnet.snmp.beans.SnmpPropertyChangeEvent
- This is the constructor for defining this event
- SnmpPropertyListener - interface com.adventnet.snmp.beans.SnmpPropertyListener.
-
This class should be implemented when we want to be notified of beans
property being changed
- SNMPREPORT -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP V2 Report request.
- SNMPREPORT -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP V2 Report request.
- SnmpRequestServer - class com.adventnet.snmp.beans.SnmpRequestServer.
-
This class is an SNMP Server bean for performing asynchronous
SNMP requests on a list of variables.
- SnmpRequestServer() -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServer
- Use this constructor for applications.
- SnmpRequestServer(Applet) -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServer
- Use this constructor for applets.
- SnmpRequestServer(Applet, int, String) -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServer
- Use this constructor for appletswhich will create a session with name
and in specific localport..
- SnmpRequestServer(int, ProtocolOptions) -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServer
- Use this constructor for applications which uses protocols
other than UDP/IP.
- SnmpRequestServer(int, String) -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServer
- Use this constructor for applications which will create a session
with name and in specific localport.
- SnmpRequestServer(String[], String) -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServer
- Use this constructor for applications in which the session needs to be
bound to some local address.
- SnmpRequestServerBeanInfo - class com.adventnet.snmp.beans.SnmpRequestServerBeanInfo.
- This class is a beaninfo for the SnmpRequestServer bean.
- SnmpRequestServerBeanInfo() -
Constructor for class com.adventnet.snmp.beans.SnmpRequestServerBeanInfo
-
- SNMPRESPONSE -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP response request
- SNMPRESPONSE -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP response request
- SnmpResultObject - class com.adventnet.snmp.beans.SnmpResultObject.
- This class contains methods to get all valid and errored responses.
- snmpSendInformAcknowledgement(long, SnmpOID, SnmpVar[], int) -
Method in class com.adventnet.snmp.beans.SnmpTarget
-
- snmpSendInformRequest(long, SnmpOID, SnmpVar[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to send an SNMPV2 inform pdu with parameters specified and variable
bindings using object ids from the Object Identifier list previously
set in this SnmpTarget instance, and the values specified.
- snmpSendInformRequest(long, String, String[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is to send an SNMPV2 inform pdu with parameters specified and variable
bindings using object ids from the Object Identifier list previously
set in this SnmpTarget instance, and the values specified.
- snmpSendNotification(long, SnmpOID, SnmpVar[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to send an SNMPV2 notification pdu with parameters specified and variable
bindings using object ids from the Object Identifier list previously
set in this SnmpTarget instance, and the values specified.
- snmpSendNotification(long, String, String[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to send an SNMPV2 notification pdu with parameters specified and variable
bindings using object ids from the Object Identifier list previously
set in this SnmpTarget instance, and the values specified.
- snmpSendTrap(SnmpOID, String, int, int, long, SnmpVar[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to send an SNMP trap, with parameters specified and variable bindings
using object ids from the Object Identifier list previously set in this
SnmpTarget instance, and the values specified.
- snmpSendTrap(String, String, int, int, long, String[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to send an SNMP trap, with parameters specified and variable bindings
using object ids from the Object Identifier list previously set in this
SnmpTarget instance, and the values specified.
- SnmpServer - class com.adventnet.snmp.beans.SnmpServer.
- This class maintains all the resources required for Snmp manager
applications and applets.
- SnmpSession - class com.adventnet.snmp.snmp2.SnmpSession.
- SnmpSession is the basic communication class for performing any SNMP
operations.
- SnmpSession(SnmpAPI) -
Constructor for class com.adventnet.snmp.snmp2.SnmpSession
- Creates a new SnmpSession object by taking the SnmpAPI instance.
- SNMPSET -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP set request request.
- SNMPSET -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP set request.
- snmpSet(String) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to do an SNMP set to the target using value specified of the first
variable on the variable list.
- snmpSet(String, byte) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to do an SNMP set to the target of the first variable on the
variable list using value specified.
- snmpSetList(String[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method sets the list of SNMP variable bindings on the agent using
the Object Identifier list previously set in this SnmpTarget instance.
- snmpSetVariable(SnmpVar) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to do an SNMP set with specified value to the target and returns
the SNMP variable identified by the first Object Identifier stored
in this SnmpTarget instance.
- snmpSetVariables(SnmpVar[]) -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to do an SNMP set, with values specified, the list of SNMP variable
bindings on the agent, using the Object Identifier list previously
set in this SnmpTarget instance.
- SnmpString - class com.adventnet.snmp.snmp2.SnmpString.
- Class of SNMP String Variable - Sub-class of SnmpVar.
- SnmpString() -
Constructor for class com.adventnet.snmp.snmp2.SnmpString
- Constuctor to keep subclasses happy
- SnmpString(byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpString
- Constructs a new SnmpString with the specified byte array of
octect string.
- SnmpString(String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpString
- Constructs a new SnmpString with initial value = s .
- SnmpString(String, String) -
Constructor for class com.adventnet.snmp.snmp2.SnmpString
- Constructs a new SnmpString with initial value = s and encoding enc.
- SnmpTable - class com.adventnet.snmp.beans.SnmpTable.
- The SnmpTable class handles polling for SNMP tables.
- SnmpTable() -
Constructor for class com.adventnet.snmp.beans.SnmpTable
- Use this constructor for applications.
- SnmpTable(Applet) -
Constructor for class com.adventnet.snmp.beans.SnmpTable
- Use this constructor for applets.
- SnmpTable(int, ProtocolOptions) -
Constructor for class com.adventnet.snmp.beans.SnmpTable
- Use this constructor for applications which uses protocols
other than UDP/IP.
- SnmpTable(int, String) -
Constructor for class com.adventnet.snmp.beans.SnmpTable
- Use this constructor for creating a new session for this application.
- SnmpTableBeanInfo - class com.adventnet.snmp.beans.SnmpTableBeanInfo.
- This class is a beaninfo for the SnmpTable bean.
- SnmpTableBeanInfo() -
Constructor for class com.adventnet.snmp.beans.SnmpTableBeanInfo
-
- SnmpTableEvent - class com.adventnet.snmp.beans.SnmpTableEvent.
- This class is the event generated by the SnmpTableReceiver bean
class.
- SnmpTableEvent(Object, Object, int, int, int, int) -
Constructor for class com.adventnet.snmp.beans.SnmpTableEvent
- This instantiates an SnmpTable event with specified source.
- SnmpTableEvent(Object, Object, int, int, int, int, boolean) -
Constructor for class com.adventnet.snmp.beans.SnmpTableEvent
- This instantiates an SnmpTable event with specified source.
- SnmpTableListener - interface com.adventnet.snmp.beans.SnmpTableListener.
-
SnmpTableListener defines the interface for an object that listens
for changes in SnmpTable objects.
- SnmpTarget - class com.adventnet.snmp.beans.SnmpTarget.
- This class is a lightweight SNMP session for use with other beans in
applications and applets.
- SnmpTarget() -
Constructor for class com.adventnet.snmp.beans.SnmpTarget
- This constructor is used in applications.
- SnmpTarget(Applet) -
Constructor for class com.adventnet.snmp.beans.SnmpTarget
- Use this constructor for applets.
- SnmpTarget(Applet, int, String) -
Constructor for class com.adventnet.snmp.beans.SnmpTarget
- Use this constructor for creating a new session for this applet.
- SnmpTarget(int, ProtocolOptions) -
Constructor for class com.adventnet.snmp.beans.SnmpTarget
- This constructor is used for applications which use protocol
other than UDP/IP.
- SnmpTarget(int, String) -
Constructor for class com.adventnet.snmp.beans.SnmpTarget
- This constructor is used for creating a new session for this application.
- SnmpTarget(String[], String) -
Constructor for class com.adventnet.snmp.beans.SnmpTarget
- Use this constructor for applications in which the session needs to be
bound to some local address.
- SnmpTargetAddrExtEntry - class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry.
- The SnmpTargetAddrExtEntry holds the information about a particular
mask and maximum message size (mms) value.
- SnmpTargetAddrExtEntry() -
Constructor for class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Default Constructor.
- SnmpTargetAddrExtEntry(byte[], int) -
Constructor for class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Constructs a new SnmpTargetAddrExtEntry with the specified
snmpTargetAddrTMask and snmpTargetAddrMMS value.
- SnmpTargetAddrExtTable - class com.adventnet.snmp.snmp2.SnmpTargetAddrExtTable.
- This class maintains a list of all SnmpTargetAddrExtEntry objects and
provides methods to operate on the list.
- SnmpTargetBeanInfo - class com.adventnet.snmp.beans.SnmpTargetBeanInfo.
- This class is a beaninfo for the SnmpTarget bean.
- SnmpTargetBeanInfo() -
Constructor for class com.adventnet.snmp.beans.SnmpTargetBeanInfo
-
- SnmpTimeticks - class com.adventnet.snmp.snmp2.SnmpTimeticks.
- Class of SNMP Timeticks Variable - Sub-class of SnmpVar.
- SnmpTimeticks(long) -
Constructor for class com.adventnet.snmp.snmp2.SnmpTimeticks
- Constructs a new SnmpTimeticks object by taking a long type
as its argument
- SnmpTransportPacket - class com.adventnet.snmp.snmp2.SnmpTransportPacket.
- Class containing the options for the transport protocol used by the
SNMP API.
- SnmpTransportPacket() -
Constructor for class com.adventnet.snmp.snmp2.SnmpTransportPacket
- Default constructor.
- SnmpTransportPacket(ProtocolOptions, byte[]) -
Constructor for class com.adventnet.snmp.snmp2.SnmpTransportPacket
- Constructor that initializes the ProtocolOptions and the data
given as argument.
- SnmpTransportProvider - interface com.adventnet.snmp.snmp2.SnmpTransportProvider.
- Interface that represents a transport connection between the SNMP manager
and SNMP agent.
- SNMPTRAP -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP trap request.
- SNMPTRAP -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP trap request.
- snmpTrapOID -
Variable in class com.adventnet.snmp.beans.ParsedTrapEvent
-
- SnmpTrapReceiver - class com.adventnet.snmp.beans.SnmpTrapReceiver.
- Receives SNMP Traps from SNMP Agents.
- SnmpTrapReceiver() -
Constructor for class com.adventnet.snmp.beans.SnmpTrapReceiver
- Use this constructor for applications.
- SnmpTrapReceiver(Applet) -
Constructor for class com.adventnet.snmp.beans.SnmpTrapReceiver
- Use this constructor for applets.
- SnmpTrapReceiver(int, ProtocolOptions) -
Constructor for class com.adventnet.snmp.beans.SnmpTrapReceiver
- Use this constructor for applications while using generic transportprovider.
- SnmpTrapReceiverBeanInfo - class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo.
- This class is a beaninfo for the SNMP Poller bean.
- SnmpTrapReceiverBeanInfo() -
Constructor for class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo
-
- SnmpUIUtils - class com.adventnet.utils.SnmpUIUtils.
- Class for the Internationalziation UI specification.
- SnmpUnsignedInt - class com.adventnet.snmp.snmp2.SnmpUnsignedInt.
- Class of SNMP Unsigned Integer Variable.
- SnmpUnsignedInt(long) -
Constructor for class com.adventnet.snmp.snmp2.SnmpUnsignedInt
- Constructs a new SnmpUnsignedInt by taking a long type as its argument.
- SnmpUtils - class com.adventnet.utils.SnmpUtils.
- Class for the internationalization implementation.
- SNMPV2TRAP -
Static variable in class com.adventnet.snmp.beans.SnmpServer
- Constant for SNMP V2 Trap request.
- SNMPV2TRAP -
Static variable in class com.adventnet.snmp.beans.SnmpTarget
- Constant for SNMP V2 Trap request.
- SnmpVacm - class com.adventnet.snmp.snmp2.vacm.SnmpVacm.
- This class is used for VACM implementation and provides the method
"isAccessAllowed" which does the access verifications.
- SnmpVacm() -
Constructor for class com.adventnet.snmp.snmp2.vacm.SnmpVacm
- The constructor takes the SnmpAPI as parameter and initializes the
vacm data structures.
- SnmpVar - class com.adventnet.snmp.snmp2.SnmpVar.
- This class provides the abstract methods to present a uniform interface for
applications working with the SNMP variables and is the base class for
all SNMP Variable class(integer, IpAddress, etc).
- SnmpVarBind - class com.adventnet.snmp.snmp2.SnmpVarBind.
- Class of SNMP Variable Binding.
- SnmpVarBind(SnmpOID, SnmpVar) -
Constructor for class com.adventnet.snmp.snmp2.SnmpVarBind
- Create the variable binding with given Object ID and Variable
- source -
Variable in class com.adventnet.snmp.beans.ParsedTrapEvent
- Agent that sent the trap
- source -
Static variable in class com.adventnet.snmp.beans.Parsers
-
- specificType -
Variable in class com.adventnet.snmp.beans.ParsedTrapEvent
- Specific Type of the Trap
- Standard_Prefix -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- Deprecated. instead use the setOIDPrefix(SnmpOID oid) and getOIDPrefix()
methods.
- start() -
Method in class com.adventnet.snmp.snmp2.SASClient
- Starts the receiver thread.
- start() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
-
- startPollingTable() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Method to start the polling of Table.This can be used after setting the
table column oids using setObjectIDList.If the method setTableOID is used
to set the oid of the table,this method need not be called explicitly as
the setTableOID() method calls this method internally.
- stop() -
Method in class com.adventnet.snmp.snmp2.SASClient
- Stops the receiver thread and closes socket connection with SAServer.
- stop() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Stops receiving traps.
- stop() -
Method in class com.adventnet.afp.log.LogFactory
- Method for stopping Loggers.
- stopCurrentThread(boolean) -
Method in class com.adventnet.snmp.beans.ClippedTable
- Used to stop the thread from reading table data
Not for API users.
- stopPolling() -
Method in class com.adventnet.snmp.beans.SnmpPoller
- Stop the polling and Stops the thread - disables the data collection from
the agent and event generation.
- stopPolling() -
Method in class com.adventnet.snmp.beans.ClippedTable
- This will stop the polling of table data.
- stopPollingTable() -
Method in class com.adventnet.snmp.beans.SnmpTable
- Method to stop the polling of Table.
- STRING -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP Type Constants.
- STRING_DATA -
Static variable in class com.adventnet.snmp.beans.SnmpTable
- Constant to specify the format in which the data has to be returned.String is the default.
- SUCCESS -
Static variable in class com.adventnet.snmp.beans.SnmpResultObject
-
- support -
Variable in class com.adventnet.snmp.beans.PropertyCustomizer
-
- supportsCustomEditor() -
Method in class com.adventnet.snmp.beans.ObjectIDEditor
-
- supportsCustomEditor() -
Method in class com.adventnet.snmp.beans.MibNamesEditor
-
- syncSend(SnmpPDU) -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Send SnmpPDU synchronously - returns response SnmpPDU and
throws SnmpException on failure, including timeout on SNMP response.
- systemUpTime -
Variable in class com.adventnet.snmp.beans.ParsedTrapEvent
-