- GAUGE -
Static variable in class com.adventnet.snmp.snmp2.SnmpAPI
- SNMP Type Constants.
- 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.SnmpServer
- 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) -
Method in class com.adventnet.snmp.beans.SnmpPoller
- generate the events 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.SnmpTarget
- Generates the 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.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 defined in this AgentCapabilties 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 the variations 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.MibModule
- Deprecated. since 4.0. Instead you can use the method getDefinedAgentCapabilities
- getAgentCapabilities() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the various clauses in AGENT-CAPABILITIES as a Vector of AgentCapabilitiesModule
- 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.SnmpTrapReceiver
- Gets 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
- getAuthProtocol() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Returns the authentication Protocol used.
- getAuthProtocol() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the Authentication Protocol.
- 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
- getBeanDescriptor() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiverBeanInfo
-
- 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.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.
- getBytes(String) -
Static method in class com.adventnet.utils.SnmpUtils
-
- getByteString(byte[], int, int) -
Static method in class com.adventnet.utils.SnmpUtils
-
- getCause() -
Method in class com.adventnet.management.transport.TransportException
-
- 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.SnmpAugmentTable
- To get the value for the cell specified by the row and column index.
- 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.SnmpTrapReceiver
- Get the Character Encoding being used.
- getCharacterEncoding() -
Method in class com.adventnet.snmp.beans.SnmpServer
- 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.LogWriterProperties
- The
getClassName
method returns the current LogWriterClassName.
- getClassName() -
Method in class com.adventnet.afp.log.LoggerProperties
- Gets the Logger implementation class that is being used by the Logger.
- 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 column 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.TrapEvent
- Gets community string received/sent
- getCommunity() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SNMP Community.
- 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
- 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
- Gets 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.SnmpTrapReceiver
- Gets the SNMP V3 contextID
- 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
- 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.SnmpTrapReceiver
- Gets the SNMP V3 Context name
- 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
- 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 interface com.adventnet.snmp.beans.ObjectIDHelper
-
- getCustomEditor() -
Method in class com.adventnet.snmp.beans.ObjectIDEditorList
-
- 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.LogWriterProperties
- The
getCustomProperties
method is used to get all the Custom properties of a LogWriter.
- getCustomProperties() -
Method in class com.adventnet.afp.log.LoggerProperties
- Returns custom properties that have been set for the Logger.
- getCustomProperty(String) -
Method in class com.adventnet.afp.log.LogWriterProperties
getCustomProperty
method is used to retreive a Custom property.
- 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.
- 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 default value for this Variation.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Gets the description for this ObjectGroup object.
- getDescription() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the DESCRIPTION string for this NotificationType object.
- getDescription() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the description for this NotififcationGroup object.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gets the description for this MODULE-IDENTITY 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.MibTrap
- Gets the value of the DESCRIPTION clause.
- getDescription() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the description for this node
- getDescription() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Returns the description of the syntax.
- getDescription() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the DESCRIPTION value for this AgentCapabilities macro.
- getDescription() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Gets the DESCRIPTION string for this Variation.
- 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.
- getEngineBoots() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieve the engine boots value.
- 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.SnmpPDU
- This method returns the engineID that is previously specified or null.
- 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.SecurityModelEntry
- Returns the engineID of this SnmpEngine.
- 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.SnmpTarget
- Get the Snmp V3 EngineID
- 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 of this trap.
- getEnterpriseString() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets the enterprise name of this trap.
- getEntries(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.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsTable
-
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrTable
-
- 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.SnmpProxyTable
-
- 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.security.community.SnmpCommunityTable
- Gets the SnmpCommunityEntry associated with the specified key.
- getEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.vacm.VacmViewTreeTable
- Returns the VacmViewTreeentry corresponding to the particular
familyName specified.
- 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[], 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.SnmpNotifyTable
- Gets the SnmpNotifyEntry associated with the specified key.
- 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.SnmpNotifyFilterProfileTable
- Gets the SnmpNotifyFilterProfileEntry associated with the specified key.
- 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.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.SnmpTargetParamsTable
-
- getEnumeration() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrTable
-
- 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.SnmpProxyTable
-
- 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.SnmpNotifyFilterTable
- Returns an enumeration of all the SnmpNotifyFilterEntry 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.SnmpEngineTable
- Returns an enumeration of all the SnmpEngineEntry objects maintained.
- 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.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.VacmViewTreeTable
- Returns an enumeration of all the VacmViewTreeEntry objects
maintained by 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
- 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
- Gives all the labels present for an enumerated syntax.
- 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
- Gets the error code in byte.
- getErrorCodes() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- To get the list of all the Error specific for an Snmp Request.
- 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
- Gets the general error message associated with this error.
- 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 ErrorObject objects corresponding to this
error.
- 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.V3HandShakeResultEvent
- Gets the error string incase the SnmpEngineID discovery and the
time synchronization was unsuccessful.
- 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.SnmpRequestServer
- To get the error string from the last request.
- getErrorString() -
Method in class com.adventnet.snmp.beans.ResultEvent
- Get the error string reported by the event generator.
- 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.SnmpTrapReceiverBeanInfo
- return the event set descriptors
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTargetBeanInfo
- return the event set descriptors
- getEventSetDescriptors() -
Method in class com.adventnet.snmp.beans.SnmpTableBeanInfo
- return 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.NotificationAdaptorBeanInfo
- returns the event set descriptors
- getExceptionCode() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the exception code for the last request.
- getExceptionCodes() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- To get the list of all the Exceptions specific to SnmpV2/V3.
- getExternalIndices() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the external indices present in the table entry
- getFailedInformRequest() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
-
- 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.SnmpTrapReceiverBeanInfo
- this will return the image to be displayed for this bean
- 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.SnmpTableBeanInfo
- this will return the image to be displayed for this bean
- 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.SnmpPollerBeanInfo
- this will return image to be displayed for this SnmpPoller Bean
- getIcon(int) -
Method in class com.adventnet.snmp.beans.NotificationAdaptorBeanInfo
- returns the image to be displayed for the bean in Builder
- 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.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.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 groups supported by this AgentCapabilties Module.
- 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.
- getInformResponsePDU() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
-
- 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.AbstractLogWriter
- This method will return the log writer instance .
- getInstanceName() -
Method in interface com.adventnet.afp.log.Logger
- The
getLoggerInstanceName
method is used to get the LoggerInstanceName of the Logger.
- getInstanceName() -
Method in interface com.adventnet.afp.log.LogWriter
- Method to get the instance name.
- getInstanceName() -
Method in class com.adventnet.afp.log.LogWriterProperties
- The
getInstanceName
method returns the current LogWriterInstanceName.
- getInstanceName() -
Method in class com.adventnet.afp.log.LoggerProperties
- Method to get the LoggerInstanceName.
- 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.SnmpTargetParamsEntry
-
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Retrieves the key for this targetAddrExtEntry.
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterProfileEntry
- Returns the key associated with this SnmpNotifyFilterProfileEntry
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyFilterEntry
- Returns the key associated with this SnmpNotifyFilterEntry
- getKey() -
Method in class com.adventnet.snmp.snmp2.SnmpNotifyEntry
- Returns the key associated with this SnmpNotifyEntry.
- 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.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.VacmViewTreeEntry
- Retrive the Key for this VacmViewTreeEntry.
- 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.VacmGroupAccessEntry
- Retrive the key for this VacmGroupAccessEntry.
- 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.SnmpTargetParamsEntry
-
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Retrieves the key for this address Name object.
- getKey(byte[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- 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[]) -
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.VacmViewTreeEntry
- Retrive the Key for this VacmViewTreeEntry.
- 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.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
- Gets 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.
- getLexicographicallyFirstOID(SnmpOID[]) -
Static method in class com.adventnet.snmp.snmp2.SnmpOID
- The method finds the lexicographically first oid in the list of two oids
given.
- getLexicographicallyFirstOID(SnmpOID, SnmpOID) -
Static method in class com.adventnet.snmp.snmp2.SnmpOID
- The method finds the lexicographically first oid in the list of two oids
given.
- 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.snmp2.SASProtocolOptions
- This method gets the local addresses for which the
session should bind with.
- getLocalAddresses() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the local addresses to listen on.
- getLocalAddresses() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Returns the value of localAddress bound on the session instance.
- 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.TcpProtocolOptionsImpl
- Get the local port configured.
- 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.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 class com.adventnet.afp.log.LogConfigFileReader
- The
getLoggerProps
method is used to get the properties of all the loggers.
- getLoggerProperties() -
Method in interface com.adventnet.afp.log.LogConfigReader
-
- 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 interface com.adventnet.afp.log.Logger
- The
getLogLevel
method is used to get the current LogLevel of the particular
Logger.
- getLogLevel() -
Method in class com.adventnet.afp.log.LoggerProperties
- To get the logging level of the 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 class com.adventnet.afp.log.LogConfigFileReader
- The
getLogWriterProps
method is used to get the properties of all the log Writers.
- getLogWriterProperties() -
Method in interface com.adventnet.afp.log.LogConfigReader
- It returns an array of LogWriterProperties.
- 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.
- getMatchingTagEntries(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrTable
-
- getMatchingTagEntry(byte[]) -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrTable
-
- getMax() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the maximum value allowed for the 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.SnmpTrapReceiver
- Gets the MIBs loaded in this applet/application -
a white-space separated list of mib files.
- 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.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.SnmpTrapReceiver
- Gets the MibOperations object reference.
- 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.
- 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.beans.SnmpServer
- To get the search Path in which the loadMibModules() will search for the
MIB modules.
- getMibPath() -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the search Path in which the MIB files are searched.
- 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.
Using the MibTrap object, the trap informations such as the
enterprise, trap number etc.
- getMibVersion() -
Method in class com.adventnet.snmp.mibs.MibModule
- Used to know whether the loaded MIB module is an SMIv1 MIB
(Structure of Management Information) or SMIv2 MIB.
- getMin() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the minimum value allowed for all the 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.MibTrap
- Gets the name of the module this trap is defined.
- 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.
- 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.MibModule
- Gets the name of this MIB module.
- getName() -
Method in class com.adventnet.snmp.mibs.ObjectGroup
- Gets the name of this ObjectGroup object.
- getName() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the name of this NotificationType object.
- getName() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the name of this NotificationGroup object.
- getName() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gets the name of this ModuleIdentity 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.ModuleCompliance
- Returns the name of this ModuleCompliance object.
- getName() -
Method in class com.adventnet.snmp.mibs.MibTrap
- Gets 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.LeafSyntax
- Returns the name of this LeafSyntax instance.
- getName() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the name of this AgentCapabilities definition.
- getName() -
Method in class com.adventnet.snmp.mibs.ACVariation
- Gets the name of the variation.
- 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 defined in this NOTIFICATION-GROUP macro.
- getNotificationsNames() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the NOTIFICATIONS clause names in NOTIFICATION-GROUP macro
- getNotificationType(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibOperations
- Gets the NotificationType object of the given trap oid
- 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.ObjectGroup
- Gets the numbered oid String of this ObjectGroup.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the numbered oid String of this NotificationType.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the numbered oid String of this NotificationGroup.
- getNumberedOIDString() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gets the numbered oid String of this ModuleIdentity.
- 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.
- 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.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpVar
- This method returns the numeric value of the SNMP data types in
decimal ( base 10 ) format.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpUnsignedInt
- This method returns the numeric value of the UNSIGNED32 data type in
decimal ( base 10 ) format.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpString
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpOpaque
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpOID
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpNull
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpNsap
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpIpAddress
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpInt
- This method returns the numeric value of the INTEGER data type in
decimal ( base 10 ) format.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpCounter64
- This method returns the numeric value of the COUNTER64 data type in
decimal ( base 10 ) format.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpBitstring
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- getNumericValueAsString() -
Method in class com.adventnet.snmp.snmp2.SnmpBits
- This method will throw UnsupportedOperationException since this
is not a numeric data type.
- 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.TrapEvent
- Gets specified variable ObjectID as a String from list of trap variables.
- 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
- 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.ObjectGroup
- Gets the objects defined in this OBJECT-GROUP macro.
- getObjects() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the OBJECT clause names in this NOTIFICATION-TYPE macro.
- 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.
- 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.ObjectGroup
- Gets the named oid String of this ObjectGroup.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the named oid String of this NotificationType.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the named oid String of this NotificationGroup.
- getOIDString() -
Method in class com.adventnet.snmp.mibs.ModuleIdentity
- Gets the named oid String of this ModuleIdentity.
- 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.
- getOIDVector() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the named OID of the node as a Vector of String.
- 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.ModuleIdentity
- Gets the value of the ORGANIZATION clause in this MODULE-IDENTITY macro.
- getOrganization() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gets the value of ORGANIZATION clause in 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.
- getPacketBufferSize() -
Method in class com.adventnet.snmp.beans.SnmpServer
- 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.
- getParamsMPModel() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- getParamsName() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- getParamsSecModel() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- getParamsSecurityLevel() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- getParamsSecurityModel() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- getParamsSecurityName() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- 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.
- getPduErrorIndex() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- To get the error index set in the PDU.
- 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.SnmpTable
- Returns the current polling interval in seconds.
- getPollInterval() -
Method in class com.adventnet.snmp.beans.SnmpPoller
- get 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.V3HandShakeResultEvent
- Gets the principal associated with the SnmpEngineID discovery/time
synchronization request that is sent.
- getPrincipal() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets Principal ie userName
- 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
- 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.SnmpTrapReceiver
- Gets the SNMPv3 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
- getPrivProtocol() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Retrieves the privacy protocol value.
- getPrivProtocol() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the privacy protocol.
- getPrivProtocol() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the SNMP V3 privProtocol.
- getPrivProtocol() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Gets the SNMP V3 privProtocol
- 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
- Gets the PRODUCT-RELEASE of this AgentCapabilities macro.
- 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.SnmpTargetBeanInfo
- 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
- 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.SnmpPollerBeanInfo
- this will return the ProperyDescriptors 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.SnmpTransportPacket
- Gets the transport options configured in the Transport Packet.
- 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.SnmpPDU
- This method will return the transport mechanism's protocol options
- getProxyMultipleTargetOut() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- getProxyName() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- getProxySingleTargetOut() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- getProxyTargetParamsIn() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- getProxyType() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- 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.TcpProtocolOptionsImpl
- 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.ObjectGroup
- Gets the REFERENCE string for this OBJECT-GROUP macro.
- getReference() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the REFERENCE string for this NotificationType object.
- 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.ModuleCompliance
- Returns the value of the REFERENCE clause for this ModuleCompliance.
- 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.MibNode
- Gets string reference for this node.
- getReference() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the REFERENCE value for this AgentCapabilities macro.
- getRemoteAddress() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method gets the remoteAddress as an InetAddress object.
- getRemoteAddress() -
Method in class com.adventnet.snmp.snmp2.TcpProtocolOptionsImpl
- This method gets the remoteAddress as an InetAddress object.
- getRemoteAddressAsString() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method gets the remoteAddress as a String.
- 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.TcpProtocolOptionsImpl
- Get the remote port with which this SNMP entity will communicate.
- 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.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.V3HandShakeResultEvent
- Get the Result string associated with the SnmpEngineID discovery and
the time synchronization.
- getResult() -
Method in class com.adventnet.snmp.beans.SnmpResultObject
- This will return a Vector of successful operation string values.
- 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 given 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.ModuleIdentity
- Gets the value of REVISION clause in this MODULE-IDENTITY macro.
- getRevisions() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the revisions as a Vector of String Elements.
- 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.SnmpAugmentTable
- Returns the data for a row of the Table specified by the index .
- 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.SnmpTargetParamsEntry
-
- getRowStatus() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getRowStatus() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- 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.SnmpNotifyFilterEntry
- Retrieves the snmpNotifyFilterRowStatus 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.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.SnmpPDU
- Gets the securityModel associated with this PDU.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
- Returns the securityModel assoicated with this message.
- getSecurityModel() -
Method in class com.adventnet.snmp.snmp2.SecurityModelEntry
- Returns the security model.
- 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.SnmpTrapReceiver
- Gets the SNMP V3 securityModel
- 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
- 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.SnmpAPI
- Gets the SecurityProvider maintained by this SnmpAPI.
- getSecurityProvider() -
Method in class com.adventnet.snmp.snmp2.Snmp3Message
-
- getSecurityProvider() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the security provider.
- getSecurityTable(int) -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SecurityModelTable as an object for a given security Model.
- getSecurityTable(int) -
Method in class com.adventnet.snmp.beans.SnmpServer
- Returns 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 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.
- getSessionId() -
Method in interface com.adventnet.snmp.snmp2.ProtocolOptions
- This method returns a unique sessionId for each Snmp session.
- 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
- getSimpleDateFormat() -
Method in class com.adventnet.snmp.snmp2.SnmpSession
- Gets the SimpleDateFormat for this class.
- getSimpleDateFormat() -
Method in class com.adventnet.snmp.beans.SnmpTrapReceiver
- Gets the SimpleDateFormat for this class.
- getSimpleDateFormat() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Gets the SimpleDateFormat for this class.
- 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.
- getSnmpEngineTime() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
-
- 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
- getSnmpProxyContextID() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- getSnmpProxyContextName() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- getSnmpProxyDrops() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpSilentDrops count.
- getSnmpProxyTable() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyModule
-
- getSnmpSilentDrops() -
Method in class com.adventnet.snmp.snmp2.SnmpGroup
- Gets the snmpSilentDrops count.
- getSnmpTagList() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- 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.SnmpTrapReceiver
- Gets the SNMP Version
- 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.
- 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.SnmpTargetAddrEntry
-
- 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.ObjectGroup
- Gets the status value for this ObjectGroup object.
- getStatus() -
Method in class com.adventnet.snmp.mibs.NotificationType
- Gets the STATUS value of this NotificationType object.
- getStatus() -
Method in class com.adventnet.snmp.mibs.NotificationGroup
- Gets the status value for this NotificationGroup object.
- getStatus() -
Method in class com.adventnet.snmp.mibs.ModuleCompliance
- Returns the STATUS value of this ModuleCompliance.
- 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.MibNode
- Gets the status value of this node.
- getStatus() -
Method in class com.adventnet.snmp.mibs.AgentCapabilities
- Gets the STATUS value for this AgentCapabilities macro.
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetParamsEntry
-
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getStorageType() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyEntry
-
- 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.SnmpNotifyFilterEntry
- Retrieves the snmpNotifyFilterStorageType 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.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.MibTC
- Gets the syntax associated with this TC.
- getSyntax() -
Method in class com.adventnet.snmp.mibs.MibNode
- Gives the syntax associated with this node.
- getSyntax() -
Method in class com.adventnet.snmp.mibs.LeafSyntax
- Gives the syntax for this leafSyntax Object.
- 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.ACVariation
- Returns the SYNTAX value of this Variation.
- 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.
- getTagList() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrEntry() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrExtEntry
- Retrieves the SnmpTargetAddrEntry associated with this object.
- getTargetAddressTDomain() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrExtTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpTargetAddrExtTable corresponding to this SnmpAPI.
- getTargetAddrName() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrParams() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrRetryCount() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrTable() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyModule
-
- getTargetAddrTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpTargetAddrTable corresponding to this SnmpAPI.
- getTargetAddrTAddress() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrTDomain() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetAddrTimeout() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetHost() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetHost() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Gets the target host to which an SnmpEngineID discovery/time
synchronization request is sent.
- 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
- getTargetParamsTable() -
Method in class com.adventnet.snmp.snmp2.SnmpProxyModule
-
- getTargetParamsTable() -
Method in class com.adventnet.snmp.snmp2.SnmpAPI
- Gets the SnmpTargetParamsTable corresponding to this SnmpAPI.
- getTargetPort() -
Method in class com.adventnet.snmp.snmp2.SnmpTargetAddrEntry
-
- getTargetPort() -
Method in class com.adventnet.snmp.beans.V3HandShakeResultEvent
- Gets the target port to which an SnmpEngineID discovery/time
synchronization request is sent.
- 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
- getTCDescription() -
Method in class com.adventnet.snmp.mibs.MibTC
- Gets the DESCRIPTION string for this TC.
- getTCList(SnmpOID) -
Method in class com.adventnet.snmp.mibs.MibOperations
- This method returns the vector of Textual Conventions for the given SnmpOID drill down till to the base
syntax level.This method requires the relavent mib(s) should be loaded into the miboperations before
invoking the getTCList(snmpoid).
- 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.
- getTrafficClass() -
Method in class com.adventnet.snmp.snmp2.UDPProtocolOptions
- This method returns the value of the previously set trafficClass
or the default value -1.
- 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.TrapEvent
- Gets the uptime value for a trap.
- getUpTime() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
- To get the Up Time value of the Agent which sent the trap
- getUserCloneFrom() -
Method in class com.adventnet.snmp.snmp2.usm.USMUserEntry
- Gets the USMUserCloneFrom OID associated with this
USMUserEntry.
- getUserErrorCode() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- Gets the user defined error code for the last request.
- getUserErrorCode() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- Gets the user defined error code for the last request.
- getUserErrorString() -
Method in class com.adventnet.snmp.beans.SnmpTarget
- This method is used to get the user defined error string to a specific error code.
- getUserErrorString() -
Method in class com.adventnet.snmp.beans.SnmpRequestServer
- This method is used to get the user defined error string to a specific error code.
- getUserErrorString(int) -
Static method in class com.adventnet.snmp.beans.ErrorMessages
- This method is used to get the user defined error string to a specific error code.
- 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.SnmpTrapReceiver
- Gets the USMUserTable reference.
- 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
- 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.
- getV3MsgMaxSize() -
Method in class com.adventnet.snmp.beans.SnmpServer
- Get the maximum size of the Snmp3Message.
- 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.
- getVariable(SnmpOID) -
Method in class com.adventnet.snmp.snmp2.SnmpPDU
- Gets specified SNMP variable from PDUs 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.SnmpIpv6Address
- Returns the value of this SnmpIpv6Address object as a printable
string object.
- 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.SnmpOID
- Returns the value of this SnmpOID as a printable string.
- 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.
- 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.SnmpCounter64
- returns the value of SNMP variable as an object(long array of length 2).
- getVarObject() -
Method in class com.adventnet.snmp.snmp2.SnmpBitstring
- Returns the value of this SnmpBitstring SNMP variable as a
String Object.
- 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.TrapEvent
- Gets SNMP Version number in PDU.
- getVersion() -
Method in class com.adventnet.snmp.beans.ParsedTrapEvent
-
- 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.