com.adventnet.snmp.snmp2.agent
Interface RemoteV3Client


public interface RemoteV3Client

This interface will be used to support the Remote Configuration of the V3 tables configuration parameters to the User Storage Model. (ex database) .

The user who wish to have their own User Storage model ( ex database) for storing V3 parameters will implement this interface and add it to the SnmpAgent through the addRemoteV3Client() in the SnmpAgent . Whenever a entry is added , deleted or modified in any of the V3 configuration tables, the respective method(see below) in this interface is called with the table and the entry passed as a parameter.The user can use these values to write into their own Storage Model.

See Also:
V3Initialiser

Method Summary
 void snmpCommunityEntryAdded(SnmpCommunityTable communityTable, SnmpCommunityEntry addedEntry)
          This method is called by the SnmpCommunityRequestHandler whenever a SnmpCommunityEntry has been remotely added in the SnmpCommunityTable
 void snmpCommunityEntryDeleted(SnmpCommunityTable communityTable, SnmpCommunityEntry deletedEntry)
          This method is called by the SnmpCommunityRequestHandler whenever a SnmpCommunityEntry has been remotely deleted from the SnmpCommunityTable
 void snmpCommunityEntryModified(SnmpCommunityTable communityTable, SnmpCommunityEntry modifiedEntry)
          This method is called by the SnmpCommunityRequestHandler whenever a SnmpCommunityEntry has been remotely modified in the SnmpCommunityTable
 void snmpNotifyEntryAdded(SnmpNotifyTable notifyTable, SnmpNotifyEntry addedEntry)
          This method is called by the SnmpNotifyTableRequestHandler whenever a new SnmpNotifyEntry has been remotely configured.
 void snmpNotifyEntryDeleted(SnmpNotifyTable notifyTable, SnmpNotifyEntry deletedEntry)
          This method is called by the SnmpNotifyTableRequestHandler whenever a SnmpNotifyEntry has been remotely configured.
 void snmpNotifyEntryModified(SnmpNotifyTable notifyTable, SnmpNotifyEntry modifiedEntry)
          This method is called by the SnmpNotifyTableRequestHandler whenever a SnmpNotifyEntry has been remotely configured.
 void snmpNotifyFilterEntryAdded(SnmpNotifyFilterTable notifyFilterTable, SnmpNotifyFilterEntry addedEntry)
          This method is called by the SnmpNotifyFilterTableRequestHandler whenever a new SnmpNotifyFilterEntry has been remotely configured.
 void snmpNotifyFilterEntryDeleted(SnmpNotifyFilterTable notifyFilterTable, SnmpNotifyFilterEntry deletedEntry)
          This method is called by the SnmpNotifyFilterTableRequestHandler whenever a SnmpNotifyFilterEntry has been remotely configured.
 void snmpNotifyFilterEntryModified(SnmpNotifyFilterTable notifyFilterTable, SnmpNotifyFilterEntry modifiedEntry)
          This method is called by the SnmpTargetAddrExtTableRequestHandler whenever a SnmpNotifyFilterEntry has been remotely configured.
 void snmpNotifyFilterProfileEntryAdded(SnmpNotifyFilterProfileTable notifyFilterProfileTable, SnmpNotifyFilterProfileEntry addedEntry)
          This method is called by the SnmpNotifyFilterProfileTableRequestHandler whenever a new SnmpNotifyFilterProfileEntry has been remotely configured.
 void snmpNotifyFilterProfileEntryDeleted(SnmpNotifyFilterProfileTable notifyFilterProfileTable, SnmpNotifyFilterProfileEntry deletedEntry)
          This method is called by the SnmpNotifyFilterProfileTableRequestHandler whenever a SnmpNotifyFilterProfileEntry has been remotely configured.
 void snmpNotifyFilterProfileEntryModified(SnmpNotifyFilterProfileTable notifyFilterProfileTable, SnmpNotifyFilterProfileEntry modifiedEntry)
          This method is called by the SnmpNotifyFilterProfileTableRequestHandler whenever a SnmpNotifyFilterProfileEntry has been remotely configured.
 void snmpTargetAddrEntryAdded(SnmpTargetAddrTable targetAddrTable, SnmpTargetAddrEntry addedEntry)
          This method is called by the SnmpTargetAddrTableRequestHandler whenever a new SnmpTargetAddrEntry has been remotely configured.
 void snmpTargetAddrEntryDeleted(SnmpTargetAddrTable targetAddrTable, SnmpTargetAddrEntry deleteddEntry)
          This method is called by the SnmpTargetAddrTableRequestHandler whenever a SnmpTargetAddrEntry has been remotely configured.
 void snmpTargetAddrEntryModified(SnmpTargetAddrTable targetAddrTable, SnmpTargetAddrEntry modifiedEntry)
          This method is called by the SnmpTargetAddrTableRequestHandler whenever a SnmpTargetAddrEntry has been remotely configured.
 void snmpTargetAddrExtEntryAdded(SnmpTargetAddrExtTable targetAddrExtTable, SnmpTargetAddrExtEntry addedEntry)
          This method is called by the SnmpTargetAddrTableRequestHandler whenever a new SnmpTargetAddrEntry has been remotely configured.
 void snmpTargetAddrExtEntryDeleted(SnmpTargetAddrExtTable targetAddrExtTable, SnmpTargetAddrExtEntry deletedEntry)
          This method is called by the SnmpTargetAddrTableRequestHandler whenever a SnmpTargetAddrEntry has been remotely configured.
 void snmpTargetAddrExtEntryModified(SnmpTargetAddrExtTable targetAddrExtTable, SnmpTargetAddrExtEntry modifiedEntry)
          This method is called by the SnmpTargetAddrExtTableRequestHandler whenever a SnmpTargetAddrExtEntry has been remotely configured.
 void snmpTargetParamsEntryAdded(SnmpTargetParamsTable targetParamsTable, SnmpTargetParamsEntry addedEntry)
          This method is called by the SnmpTargetParamsTableRequestHandler whenever a new SnmpTargetParamsEntry has been remotely configured.
 void snmpTargetParamsEntryDeleted(SnmpTargetParamsTable targetParamsTable, SnmpTargetParamsEntry deletedEntry)
          This method is called by the SnmpTargetParamsTableRequestHandler whenever a SnmpTargetParamsEntry has been remotely configured.
 void snmpTargetParamsEntryModified(SnmpTargetParamsTable targetParamsTable, SnmpTargetParamsEntry modifiedEntry)
          This method is called by the SnmpTargetParamsTableRequestHandler whenever a SnmpTargetParamsEntry has been remotely configured.
 void usmUserEntryAdded(USMUserTable usmTable, USMUserEntry addedEntry)
          This method is called by the UsmUserTableRequestHandler whenever a new USMUserEntry has been remotely added to the USMUserTable.
 void usmUserEntryDeleted(USMUserTable usmTable, USMUserEntry deletedEntry)
          This method is called by the UsmUserTableRequestHandler whenever a USMUserEntry has been remotely deleted from the USMUserTable
 void usmUserEntryModified(USMUserTable usmTable, USMUserEntry modifiedEntry)
          This method is called by the UsmUserTableRequestHandler whenever a USMUserEntry has been remotely modified.
 void vacmAccessEntryAdded(VacmGroupAccessTable vacmAccessTable, VacmAccessEntry addedEntry)
          This method is called by the VacmAccessTableRequestHandler whenever a new VacmAccessEntry has been remotely added in the VacmGroupAccessTable.
 void vacmAccessEntryDeleted(VacmGroupAccessTable vacmAccessTable, VacmAccessEntry deletedEntry)
          This method is called by the VacmAccessTableRequestHandler whenever a VacmAccessEntry has been remotely deleted from the VacmGroupAccessTable.
 void vacmAccessEntryModified(VacmGroupAccessTable vacmAccessTable, VacmAccessEntry modifiedEntry)
          This method is called by the VacmAccessTableRequestHandler whenever a VacmAccessEntry has been remotely modified in the VacmGroupAccessTable.
 void vacmContextEntryAdded(VacmContextTable vacmContextTable, VacmContextEntry addedEntry)
          This method is called by the VacmContextTableRequestHandler whenever a new VacmContextEntry has been remotely added to the VacmContextTable
 void vacmContextEntryDeleted(VacmContextTable vacmContextTable, VacmContextEntry deletedEntry)
          This method is called by the VacmContextTableRequestHandler whenever a VacmContextEntry has been remotely deleted from the VacmContextTable
 void vacmContextEntryModified(VacmContextTable vacmContextTable, VacmContextEntry modifiedEntry)
          This method is called by the VacmContextTableRequestHandler whenever a VacmContextEntry has been remotely modified in the VacmContextTable
 void vacmGroupEntryAdded(VacmGroupTable vacmGroupTable, VacmGroupEntry addedEntry)
          This method is called by the VacmGroupTableRequestHandler whenever a VacmGroupEntry has been remotely added in the VacmGroupTable.
 void vacmGroupEntryDeleted(VacmGroupTable vacmGroupTable, VacmGroupEntry deletedEntry)
          This method is called by the VacmGroupTableRequestHandler whenever a VacmGroupEntry has been remotely deleted from the VacmGroupTable.
 void vacmGroupEntryModified(VacmGroupTable vacmGroupTable, VacmGroupEntry modifiedEntry)
          This method is called by the VacmGroupTableRequestHandler whenever a VacmGroupEntry has been remotely modified in the VacmGroupTable
 void vacmViewTreeEntryAdded(VacmViewTreeTable vacmViewTreeTable, VacmFamilyEntry addedEntry)
          This method is called by the VacmViewTreeTableRequestHandler whenever a VacmFamilyEntry has been remotely added into the VacmViewTreeTable
 void vacmViewTreeEntryDeleted(VacmViewTreeTable vacmViewTreeTable, VacmFamilyEntry deletedEntry)
          This method is called by the VacmViewTreeTableRequestHandler whenever a VacmFamilyEntry has been remotely deleted from the VacmViewTreeTable.
 void vacmViewTreeEntryModified(VacmViewTreeTable vacmViewTreeTable, VacmFamilyEntry modifiedEntry)
          This method is called by the VacmViewTreeTableRequestHandler whenever a VacmFamilyEntry has been modified in the VacmViewTreeTable.
 

Method Detail

usmUserEntryAdded

public void usmUserEntryAdded(USMUserTable usmTable,
                              USMUserEntry addedEntry)
This method is called by the UsmUserTableRequestHandler whenever a new USMUserEntry has been remotely added to the USMUserTable.
Parameters:
usmTable - the instance of USMUserTable handled by the SnmpAgent.
addedEntry - the new USMUserEntry that has been added.

usmUserEntryDeleted

public void usmUserEntryDeleted(USMUserTable usmTable,
                                USMUserEntry deletedEntry)
This method is called by the UsmUserTableRequestHandler whenever a USMUserEntry has been remotely deleted from the USMUserTable
Parameters:
usmTable - the instance of USMUserTable handled by the SnmpAgent.
deletedEntry - the new USMUserEntry that has been deleted.

usmUserEntryModified

public void usmUserEntryModified(USMUserTable usmTable,
                                 USMUserEntry modifiedEntry)
This method is called by the UsmUserTableRequestHandler whenever a USMUserEntry has been remotely modified.
Parameters:
usmTable - the instance of USMUserTable handled by the SnmpAgent.
modifiedEntry - the new USMUserEntry that has been modified

vacmContextEntryAdded

public void vacmContextEntryAdded(VacmContextTable vacmContextTable,
                                  VacmContextEntry addedEntry)
This method is called by the VacmContextTableRequestHandler whenever a new VacmContextEntry has been remotely added to the VacmContextTable
Parameters:
vacmContextTable - the instance of VacmContextTable handled by the SnmpAgent.
addedEntry - the new VacmContextEntry that has been added.

vacmContextEntryDeleted

public void vacmContextEntryDeleted(VacmContextTable vacmContextTable,
                                    VacmContextEntry deletedEntry)
This method is called by the VacmContextTableRequestHandler whenever a VacmContextEntry has been remotely deleted from the VacmContextTable
Parameters:
vacmContextTable - the instance of VacmContextTable handled by the SnmpAgent.
deletedEntry - the new VacmContextEntry that has been removed.

vacmContextEntryModified

public void vacmContextEntryModified(VacmContextTable vacmContextTable,
                                     VacmContextEntry modifiedEntry)
This method is called by the VacmContextTableRequestHandler whenever a VacmContextEntry has been remotely modified in the VacmContextTable
Parameters:
vacmContextTable - the instance of VacmContextTable handled by the SnmpAgent.
modifiedEntry - the new VacmContextEntry that has been modified

vacmAccessEntryAdded

public void vacmAccessEntryAdded(VacmGroupAccessTable vacmAccessTable,
                                 VacmAccessEntry addedEntry)
This method is called by the VacmAccessTableRequestHandler whenever a new VacmAccessEntry has been remotely added in the VacmGroupAccessTable.
Parameters:
vacmAccessTable - the instance of VacmGroupAccessTable handled by the SnmpAgent.
addedEntry - the new VacmAccessEntry that has been added

vacmAccessEntryDeleted

public void vacmAccessEntryDeleted(VacmGroupAccessTable vacmAccessTable,
                                   VacmAccessEntry deletedEntry)
This method is called by the VacmAccessTableRequestHandler whenever a VacmAccessEntry has been remotely deleted from the VacmGroupAccessTable.
Parameters:
vacmAccessTable - the instance of VacmGroupAccessTable handled by the SnmpAgent.
deletedEntry - the VacmAccessEntry that has been deleted

vacmAccessEntryModified

public void vacmAccessEntryModified(VacmGroupAccessTable vacmAccessTable,
                                    VacmAccessEntry modifiedEntry)
This method is called by the VacmAccessTableRequestHandler whenever a VacmAccessEntry has been remotely modified in the VacmGroupAccessTable.
Parameters:
vacmAccessTable - the instance of VacmGroupAccessTable handled by the SnmpAgent.
modifiedEntry - the VacmAccessEntry that has been modified

vacmGroupEntryAdded

public void vacmGroupEntryAdded(VacmGroupTable vacmGroupTable,
                                VacmGroupEntry addedEntry)
This method is called by the VacmGroupTableRequestHandler whenever a VacmGroupEntry has been remotely added in the VacmGroupTable.
Parameters:
vacmGroupTable - the instance of VacmGroupTable handled by the SnmpAgent.
addedEntry - the VacmGroupEntry that has been added

vacmGroupEntryDeleted

public void vacmGroupEntryDeleted(VacmGroupTable vacmGroupTable,
                                  VacmGroupEntry deletedEntry)
This method is called by the VacmGroupTableRequestHandler whenever a VacmGroupEntry has been remotely deleted from the VacmGroupTable.
Parameters:
vacmGroupTable - the instance of VacmGroupTable handled by the SnmpAgent.
deletedEntry - the VacmGroupEntry that has been deleted

vacmGroupEntryModified

public void vacmGroupEntryModified(VacmGroupTable vacmGroupTable,
                                   VacmGroupEntry modifiedEntry)
This method is called by the VacmGroupTableRequestHandler whenever a VacmGroupEntry has been remotely modified in the VacmGroupTable
Parameters:
vacmGroupTable - the instance of VacmGroupTable handled by the SnmpAgent.
modifiedEntry - the VacmGroupEntry that has been modified

vacmViewTreeEntryAdded

public void vacmViewTreeEntryAdded(VacmViewTreeTable vacmViewTreeTable,
                                   VacmFamilyEntry addedEntry)
This method is called by the VacmViewTreeTableRequestHandler whenever a VacmFamilyEntry has been remotely added into the VacmViewTreeTable
Parameters:
vacmViewTreeTable - the instance of VacmViewTreeTable handled by the SnmpAgent.
addedEntry - the new VacmFamilyEntry that has been added

vacmViewTreeEntryDeleted

public void vacmViewTreeEntryDeleted(VacmViewTreeTable vacmViewTreeTable,
                                     VacmFamilyEntry deletedEntry)
This method is called by the VacmViewTreeTableRequestHandler whenever a VacmFamilyEntry has been remotely deleted from the VacmViewTreeTable.
Parameters:
vacmViewTreeTable - the instance of VacmViewTreeTable handled by the SnmpAgent.
deletedEntry - the VacmFamilyEntry that has been deleted

vacmViewTreeEntryModified

public void vacmViewTreeEntryModified(VacmViewTreeTable vacmViewTreeTable,
                                      VacmFamilyEntry modifiedEntry)
This method is called by the VacmViewTreeTableRequestHandler whenever a VacmFamilyEntry has been modified in the VacmViewTreeTable.
Parameters:
vacmViewTreeTable - the instance of VacmViewTreeTable handled by the SnmpAgent.
modifiedEntry - the VacmFamilyEntry that has been modified

snmpCommunityEntryAdded

public void snmpCommunityEntryAdded(SnmpCommunityTable communityTable,
                                    SnmpCommunityEntry addedEntry)
This method is called by the SnmpCommunityRequestHandler whenever a SnmpCommunityEntry has been remotely added in the SnmpCommunityTable
Parameters:
communityTable - the instance of communityTable handled by the SnmpAgent.
addedEntry - the SnmpCommunityEntry that has been added

snmpCommunityEntryDeleted

public void snmpCommunityEntryDeleted(SnmpCommunityTable communityTable,
                                      SnmpCommunityEntry deletedEntry)
This method is called by the SnmpCommunityRequestHandler whenever a SnmpCommunityEntry has been remotely deleted from the SnmpCommunityTable
Parameters:
communityTable - the instance of communityTable handled by the SnmpAgent.
deletedEntry - the SnmpCommunityEntry that has been deleted

snmpCommunityEntryModified

public void snmpCommunityEntryModified(SnmpCommunityTable communityTable,
                                       SnmpCommunityEntry modifiedEntry)
This method is called by the SnmpCommunityRequestHandler whenever a SnmpCommunityEntry has been remotely modified in the SnmpCommunityTable
Parameters:
communityTable - the instance of communityTable handled by the SnmpAgent.
modifiedEntry - the SnmpCommunityEntry that has been modified

snmpTargetAddrEntryAdded

public void snmpTargetAddrEntryAdded(SnmpTargetAddrTable targetAddrTable,
                                     SnmpTargetAddrEntry addedEntry)
This method is called by the SnmpTargetAddrTableRequestHandler whenever a new SnmpTargetAddrEntry has been remotely configured.
Parameters:
targetAddrTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
addedEntry - the SnmpTargetAddrEntry that has been added

snmpTargetAddrEntryDeleted

public void snmpTargetAddrEntryDeleted(SnmpTargetAddrTable targetAddrTable,
                                       SnmpTargetAddrEntry deleteddEntry)
This method is called by the SnmpTargetAddrTableRequestHandler whenever a SnmpTargetAddrEntry has been remotely configured.
Parameters:
targetAddrTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
deletedEntry - the SnmpTargetAddrEntry that has been deleted

snmpTargetAddrEntryModified

public void snmpTargetAddrEntryModified(SnmpTargetAddrTable targetAddrTable,
                                        SnmpTargetAddrEntry modifiedEntry)
This method is called by the SnmpTargetAddrTableRequestHandler whenever a SnmpTargetAddrEntry has been remotely configured.
Parameters:
targetAddrTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
modifiedEntry - the SnmpTargetAddrEntry that has been modified

snmpTargetAddrExtEntryAdded

public void snmpTargetAddrExtEntryAdded(SnmpTargetAddrExtTable targetAddrExtTable,
                                        SnmpTargetAddrExtEntry addedEntry)
This method is called by the SnmpTargetAddrTableRequestHandler whenever a new SnmpTargetAddrEntry has been remotely configured.
Parameters:
targetAddrTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
addedEntry - the SnmpTargetAddrEntry that has been added

snmpTargetAddrExtEntryDeleted

public void snmpTargetAddrExtEntryDeleted(SnmpTargetAddrExtTable targetAddrExtTable,
                                          SnmpTargetAddrExtEntry deletedEntry)
This method is called by the SnmpTargetAddrTableRequestHandler whenever a SnmpTargetAddrEntry has been remotely configured.
Parameters:
targetAddrTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
deletedEntry - the SnmpTargetAddrEntry that has been deleted

snmpTargetAddrExtEntryModified

public void snmpTargetAddrExtEntryModified(SnmpTargetAddrExtTable targetAddrExtTable,
                                           SnmpTargetAddrExtEntry modifiedEntry)
This method is called by the SnmpTargetAddrExtTableRequestHandler whenever a SnmpTargetAddrExtEntry has been remotely configured.
Parameters:
targetAddrExtTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
modifiedEntry - the SnmpTargetAddrExtEntry that has been modified

snmpTargetParamsEntryAdded

public void snmpTargetParamsEntryAdded(SnmpTargetParamsTable targetParamsTable,
                                       SnmpTargetParamsEntry addedEntry)
This method is called by the SnmpTargetParamsTableRequestHandler whenever a new SnmpTargetParamsEntry has been remotely configured.
Parameters:
targetParamsTable - the instance of SnmpTargetParamsTable handled by the SnmpAgent.
addedEntry - the SnmpTargetParamsEntry that has been added

snmpTargetParamsEntryDeleted

public void snmpTargetParamsEntryDeleted(SnmpTargetParamsTable targetParamsTable,
                                         SnmpTargetParamsEntry deletedEntry)
This method is called by the SnmpTargetParamsTableRequestHandler whenever a SnmpTargetParamsEntry has been remotely configured.
Parameters:
targetParamsTable - the instance of SnmpTargetParamsTable handled by the SnmpAgent.
deletedEntry - the SnmpTargetParamsEntry that has been deleted

snmpTargetParamsEntryModified

public void snmpTargetParamsEntryModified(SnmpTargetParamsTable targetParamsTable,
                                          SnmpTargetParamsEntry modifiedEntry)
This method is called by the SnmpTargetParamsTableRequestHandler whenever a SnmpTargetParamsEntry has been remotely configured.
Parameters:
targetParamsTable - the instance of SnmpTargetParamsTable handled by the SnmpAgent.
modifiedEntry - the SnmpTargetParamsEntry that has been modified

snmpNotifyEntryAdded

public void snmpNotifyEntryAdded(SnmpNotifyTable notifyTable,
                                 SnmpNotifyEntry addedEntry)
This method is called by the SnmpNotifyTableRequestHandler whenever a new SnmpNotifyEntry has been remotely configured.
Parameters:
notifyTable - the instance of SnmpNotifyTable handled by the SnmpAgent.
addedEntry - the SnmpNotifyEntry that has been added

snmpNotifyEntryDeleted

public void snmpNotifyEntryDeleted(SnmpNotifyTable notifyTable,
                                   SnmpNotifyEntry deletedEntry)
This method is called by the SnmpNotifyTableRequestHandler whenever a SnmpNotifyEntry has been remotely configured.
Parameters:
notifyTable - the instance of SnmpNotifyTable handled by the SnmpAgent.
deletedEntry - the SnmpNotifyEntry that has been deleted

snmpNotifyEntryModified

public void snmpNotifyEntryModified(SnmpNotifyTable notifyTable,
                                    SnmpNotifyEntry modifiedEntry)
This method is called by the SnmpNotifyTableRequestHandler whenever a SnmpNotifyEntry has been remotely configured.
Parameters:
notifyTable - the instance of SnmpNotifyTable handled by the SnmpAgent.
modifiedEntry - the SnmpNotifyEntry that has been modified

snmpNotifyFilterEntryAdded

public void snmpNotifyFilterEntryAdded(SnmpNotifyFilterTable notifyFilterTable,
                                       SnmpNotifyFilterEntry addedEntry)
This method is called by the SnmpNotifyFilterTableRequestHandler whenever a new SnmpNotifyFilterEntry has been remotely configured.
Parameters:
notifyFilterTable - the instance of SnmpNotifyFilterTable handled by the SnmpAgent.
addedEntry - the SnmpNotifyFilterEntry that has been added

snmpNotifyFilterEntryDeleted

public void snmpNotifyFilterEntryDeleted(SnmpNotifyFilterTable notifyFilterTable,
                                         SnmpNotifyFilterEntry deletedEntry)
This method is called by the SnmpNotifyFilterTableRequestHandler whenever a SnmpNotifyFilterEntry has been remotely configured.
Parameters:
notifyFilterTable - the instance of SnmpNotifyFilterTable handled by the SnmpAgent.
deletedEntry - the SnmpNotifyFilterEntry that has been deleted

snmpNotifyFilterEntryModified

public void snmpNotifyFilterEntryModified(SnmpNotifyFilterTable notifyFilterTable,
                                          SnmpNotifyFilterEntry modifiedEntry)
This method is called by the SnmpTargetAddrExtTableRequestHandler whenever a SnmpNotifyFilterEntry has been remotely configured.
Parameters:
notifyFilterTable - the instance of SnmpNotifyFilterTable handled by the SnmpAgent.
modifiedEntry - the SnmpNotifyFilterEntry that has been modified

snmpNotifyFilterProfileEntryAdded

public void snmpNotifyFilterProfileEntryAdded(SnmpNotifyFilterProfileTable notifyFilterProfileTable,
                                              SnmpNotifyFilterProfileEntry addedEntry)
This method is called by the SnmpNotifyFilterProfileTableRequestHandler whenever a new SnmpNotifyFilterProfileEntry has been remotely configured.
Parameters:
notifyFilterProfileTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
addedEntry - the SnmpNotifyFilterProfileEntry that has been added

snmpNotifyFilterProfileEntryDeleted

public void snmpNotifyFilterProfileEntryDeleted(SnmpNotifyFilterProfileTable notifyFilterProfileTable,
                                                SnmpNotifyFilterProfileEntry deletedEntry)
This method is called by the SnmpNotifyFilterProfileTableRequestHandler whenever a SnmpNotifyFilterProfileEntry has been remotely configured.
Parameters:
notifyFilterProfileTable - the instance of SnmpTargetAddrTable handled by the SnmpAgent.
deletedEntry - the SnmpNotifyFilterProfileEntry that has been deleted

snmpNotifyFilterProfileEntryModified

public void snmpNotifyFilterProfileEntryModified(SnmpNotifyFilterProfileTable notifyFilterProfileTable,
                                                 SnmpNotifyFilterProfileEntry modifiedEntry)
This method is called by the SnmpNotifyFilterProfileTableRequestHandler whenever a SnmpNotifyFilterProfileEntry has been remotely configured.
Parameters:
notifyFilterProfileTable - the instance of SnmpNotifyFilterProfileTable handled by the SnmpAgent.
modifiedEntry - the SnmpNotifyFilterProfileEntry that has been modified