com.adventnet.snmp.snmp2.agent.notification
Class SnmpNotifyFilterProfileTableRequestHandler

java.lang.Object
  |
  +--com.adventnet.snmp.snmp2.agent.SimpleRequestHandler
        |
        +--com.adventnet.snmp.snmp2.agent.BaseTableRequestHandler
              |
              +--com.adventnet.snmp.snmp2.agent.notification.SnmpNotifyFilterProfileTableRequestHandler

public class SnmpNotifyFilterProfileTableRequestHandler
extends BaseTableRequestHandler

Handles all requests under snmpNotifyFilterProfileTable group.


Field Summary
(package private)  SnmpAgent agentName
           
(package private)  SnmpAPI api
           
(package private) static int COLUMNCOUNT
           
(package private)  java.lang.String fileDir
           
(package private)  java.lang.String format
           
(package private)  SnmpNotifyFilterProfileTable notifyFilterProfileTable
           
(package private)  java.util.Vector snmpNotifyFilterProfileEntryVector
           
(package private) static int SNMPNOTIFYFILTERPROFILENAME
           
(package private) static int SNMPNOTIFYFILTERPROFILEROWSTATUS
           
(package private) static int SNMPNOTIFYFILTERPROFILESTORTYPE
           
(package private)  SnmpNotifyFilterProfileTableXMLToVector xmlToVector
           
 
Fields inherited from class com.adventnet.snmp.snmp2.agent.BaseTableRequestHandler
agentName, listenerList, tModelComplete
 
Fields inherited from class com.adventnet.snmp.snmp2.agent.SimpleRequestHandler
instrumentHandler, listener, tableListener, writeEachTime
 
Constructor Summary
SnmpNotifyFilterProfileTableRequestHandler(SnmpAgent agentRef)
          The Primary Constructor with the agent Name.
SnmpNotifyFilterProfileTableRequestHandler(SnmpAgent agentRef, java.lang.String dirStr, java.lang.String fileName, java.lang.String format)
          The Secondary Constructor with the agent Name and Persistence Support.
 
Method Summary
(package private)  boolean checkForRowStatus(SnmpNotifyFilterProfileEntry entry)
           
 boolean createAndAddSnmpNotifyFilterProfileEntry(java.lang.String targetParamsName, java.lang.String profileName, java.lang.Integer storageType, java.lang.Integer rowStatus)
          The Method to Create and Add a new SnmpNotifyFilterProfileEntry to SnmpNotifyFilterProfileTable.
static SnmpNotifyFilterProfileEntry createSnmpNotifyFilterProfileEntry(java.lang.String targetParamsName, java.lang.String profileName, java.lang.Integer storageType, java.lang.Integer rowStatus)
          The Static Method to create a SnmpNotifyFilterProfileEntry.
 int[] getOidRep()
          Retrives the integer representation of OID
static int[] getSnmpNotifyFilterProfileTableOidRep()
          Getter for the Snmp Notify filter profile table oid representation.
protected  int[] getSubidList()
          Gets the subid list of the oid.
 java.util.Vector getTableVector()
          The method to return the Vector of SnmpNotifyFilterProfileEntries present in the SnmpNotifyFilterProfileTable.
protected  void processGetNextRequest(SnmpVarBind varb, AgentNode node, VarBindRequestEvent pe)
          Process the GetNext Request message which is received from PduRequestHandler.
protected  void processGetRequest(SnmpVarBind varb, AgentNode node, VarBindRequestEvent pe)
          Process the Get Request message which is received from PduRequestHandler.
protected  void processGetRequest(SnmpVarBind varb, int req, VarBindRequestEvent pe, SnmpNotifyFilterProfileEntry entry, byte[] paramsName)
          Process the Get Request message for the given params.
protected  void processSetRequest(SnmpVarBind varb, AgentNode node, VarBindRequestEvent pe)
          Process the Set Request message which is received from PduRequestHandler.
 void serialize(java.io.ObjectOutputStream outMain)
          This method Serializes the Output Stream.
 void setTableVector(java.util.Vector notifyFilterVec)
          The method to set the Vector of SnmpNotifyFilterProfileEntries.
 
Methods inherited from class com.adventnet.snmp.snmp2.agent.BaseTableRequestHandler
addChangeListener, createChangeEvent, fireChangeEvent, removeChangeListener
 
Methods inherited from class com.adventnet.snmp.snmp2.agent.SimpleRequestHandler
addInstrumentHandler, addRegistrationListener, addTableListener, addUpdateListener, getInstrument, getMibVarHash, getNextRequest, getObjectHash, getObjectTypeHash, getRequest, getTableListener, isWriteEachTime, processGetNextRequest, processGetRequest, processSetRequest, removeRegistrationListener, removeUpdateListener, setRequest, setWriteEachTime, writeIntoFile
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SNMPNOTIFYFILTERPROFILENAME

static final int SNMPNOTIFYFILTERPROFILENAME

SNMPNOTIFYFILTERPROFILESTORTYPE

static final int SNMPNOTIFYFILTERPROFILESTORTYPE

SNMPNOTIFYFILTERPROFILEROWSTATUS

static final int SNMPNOTIFYFILTERPROFILEROWSTATUS

COLUMNCOUNT

static final int COLUMNCOUNT

agentName

SnmpAgent agentName

api

SnmpAPI api

notifyFilterProfileTable

SnmpNotifyFilterProfileTable notifyFilterProfileTable

snmpNotifyFilterProfileEntryVector

java.util.Vector snmpNotifyFilterProfileEntryVector

xmlToVector

SnmpNotifyFilterProfileTableXMLToVector xmlToVector

format

java.lang.String format

fileDir

java.lang.String fileDir
Constructor Detail

SnmpNotifyFilterProfileTableRequestHandler

public SnmpNotifyFilterProfileTableRequestHandler(SnmpAgent agentRef)
The Primary Constructor with the agent Name.
Parameters:
agentRef - The Agent Name Reference.

SnmpNotifyFilterProfileTableRequestHandler

public SnmpNotifyFilterProfileTableRequestHandler(SnmpAgent agentRef,
                                                  java.lang.String dirStr,
                                                  java.lang.String fileName,
                                                  java.lang.String format)
The Secondary Constructor with the agent Name and Persistence Support.
Parameters:
agentRef - The Agent Name Reference.
dirStr - the directory location String of the File.
fileName - The fileName String.
format - The file format("xml").
Method Detail

getSnmpNotifyFilterProfileTableOidRep

public static int[] getSnmpNotifyFilterProfileTableOidRep()
Getter for the Snmp Notify filter profile table oid representation.
Returns:
The OID Representation required.

getOidRep

public int[] getOidRep()
Description copied from class: SimpleRequestHandler
Retrives the integer representation of OID
Overrides:
getOidRep in class SimpleRequestHandler
Tags copied from class: SimpleRequestHandler
Returns:
the integer array of OID

getSubidList

protected int[] getSubidList()
Description copied from class: SimpleRequestHandler
Gets the subid list of the oid.
Overrides:
getSubidList in class SimpleRequestHandler
Tags copied from class: SimpleRequestHandler
Returns:
the integer array of subid list

processGetRequest

protected void processGetRequest(SnmpVarBind varb,
                                 AgentNode node,
                                 VarBindRequestEvent pe)
                          throws AgentSnmpException
Description copied from class: SimpleRequestHandler
Process the Get Request message which is received from PduRequestHandler.
Overrides:
processGetRequest in class SimpleRequestHandler
Tags copied from class: SimpleRequestHandler
Parameters:
varb - The received varbind .
node - The node for which Get Request is to be done.
pe - The VarBind Request Event created by this Get request.
Throws:
AgentSnmpException - This wraps all the Exceptions thrown while Processing the Event.

processGetRequest

protected void processGetRequest(SnmpVarBind varb,
                                 int req,
                                 VarBindRequestEvent pe,
                                 SnmpNotifyFilterProfileEntry entry,
                                 byte[] paramsName)
                          throws AgentSnmpException
Process the Get Request message for the given params.
Parameters:
varb - The received VarBind.
req - The request given.
pe - The Varbind Request Event created after thid Event.
entry - The Snmp Notify Filter Profile Entry for the Request.
paramsName - The Parameter name of the Notify Filter Table.
Throws:
AgentSnmpException - This wraps all the Exceptions thrown by the Agent while Processing this event.

processSetRequest

protected void processSetRequest(SnmpVarBind varb,
                                 AgentNode node,
                                 VarBindRequestEvent pe)
                          throws AgentSnmpException
Description copied from class: SimpleRequestHandler
Process the Set Request message which is received from PduRequestHandler.
Overrides:
processSetRequest in class SimpleRequestHandler
Tags copied from class: SimpleRequestHandler
Parameters:
varb - The received varbind.
node - The node for which Get Next Request is to be done.
pe - The VarBind Request Event created by this GetNext request.
Throws:
AgentSnmpException - This wraps all the Exceptions thrown while Processing the Event.

processGetNextRequest

protected void processGetNextRequest(SnmpVarBind varb,
                                     AgentNode node,
                                     VarBindRequestEvent pe)
                              throws AgentSnmpException
Description copied from class: SimpleRequestHandler
Process the GetNext Request message which is received from PduRequestHandler.
Overrides:
processGetNextRequest in class SimpleRequestHandler
Tags copied from class: SimpleRequestHandler
Parameters:
varb - The received varbind.
node - The node for which Get Next Request is to be done.
pe - The VarBind Request Event created by this GetNext request.
Throws:
AgentSnmpException - This wraps all the Exceptions thrown while Processing the Event.

checkForRowStatus

boolean checkForRowStatus(SnmpNotifyFilterProfileEntry entry)
                    throws AgentException

createAndAddSnmpNotifyFilterProfileEntry

public boolean createAndAddSnmpNotifyFilterProfileEntry(java.lang.String targetParamsName,
                                                        java.lang.String profileName,
                                                        java.lang.Integer storageType,
                                                        java.lang.Integer rowStatus)
The Method to Create and Add a new SnmpNotifyFilterProfileEntry to SnmpNotifyFilterProfileTable.
Parameters:
targetParamsName - The targetParamsName with which the entry is to be created.
profileName - The profileName with which the entry is to be created.
storageType - The storageType for the Entry.
rowStatus - The RowStatus Integer for the Entry.
Returns:
the boolean specifying whether the row is added Successfylly or Not.
See Also:
createSnmpNotifyFilterProfileEntry.

createSnmpNotifyFilterProfileEntry

public static SnmpNotifyFilterProfileEntry createSnmpNotifyFilterProfileEntry(java.lang.String targetParamsName,
                                                                              java.lang.String profileName,
                                                                              java.lang.Integer storageType,
                                                                              java.lang.Integer rowStatus)
The Static Method to create a SnmpNotifyFilterProfileEntry.
Parameters:
targetParamsName - The targetParamsName with which the entry is to be created.
profileName - The profileName with which the entry is to be created.
storageType - The storageType for the Entry.
rowStatus - The RowStatus Integer for the Entry.
Returns:
The created SnmpNotifyFilterProfileEntry Object.
See Also:
createAndAddSnmpNotifyFilterProfileEntry.

setTableVector

public void setTableVector(java.util.Vector notifyFilterVec)
The method to set the Vector of SnmpNotifyFilterProfileEntries.
Overrides:
setTableVector in class BaseTableRequestHandler
Parameters:
The - Vector of SnmpNotifyFilterProfileEntries.

getTableVector

public java.util.Vector getTableVector()
The method to return the Vector of SnmpNotifyFilterProfileEntries present in the SnmpNotifyFilterProfileTable.
Overrides:
getTableVector in class BaseTableRequestHandler
Returns:
The Vector of SnmpNotifyFilterProfileEntries.

serialize

public void serialize(java.io.ObjectOutputStream outMain)
This method Serializes the Output Stream.
Parameters:
outMain - The objet Output stream to be serialized.