com.adventnet.snmp.snmp2.agent
Interface AclEntryInterface

All Known Implementing Classes:
AclEntry

public interface AclEntryInterface
extends TableEntry

This Interface is to be implemented for using Users own Authentication policy. This will be implemented by the AclEntry class within the API.

See Also:
AclEntry

Method Summary
 java.lang.Integer getAclAccess()
          Handles the SNMP Get Request for aclAccess.
 java.lang.String getAclCommunity()
          Handles the SNMP Get Request for aclCommunity.
 java.lang.String getAclManagers()
          Handles the SNMP Get Request for aclManagers.
 java.lang.Integer getAclStatus()
          Handles the SNMP Get Request for aclStatus.
 void setAclAccess(java.lang.Integer value)
          Handles the SNMP Set Request for aclAccess.
 void setAclCommunity(java.lang.String value)
          Handles the SNMP Set Request for aclCommunity.
 void setAclManagers(java.lang.String value)
          Handles the SNMP Set Request for aclManagers
 void setAclStatus(java.lang.Integer value)
          Handles the SNMP Set Request for aclStatus.
 
Methods inherited from interface com.adventnet.utils.agent.TableEntry
computeInstanceOID, getInstanceOID, setInstanceOID
 

Method Detail

getAclCommunity

public java.lang.String getAclCommunity()
                                 throws AgentException
Handles the SNMP Get Request for aclCommunity.
Returns:
The Acl Community Value Requested.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.

setAclCommunity

public void setAclCommunity(java.lang.String value)
Handles the SNMP Set Request for aclCommunity.
Parameters:
value - The Acl Community Value to be set.

getAclAccess

public java.lang.Integer getAclAccess()
                               throws AgentException
Handles the SNMP Get Request for aclAccess.
Returns:
The Acl Access Value requested.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.

setAclAccess

public void setAclAccess(java.lang.Integer value)
                  throws AgentException
Handles the SNMP Set Request for aclAccess.
Parameters:
value - The Value for Acl Access to set.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.

getAclManagers

public java.lang.String getAclManagers()
                                throws AgentException
Handles the SNMP Get Request for aclManagers.
Returns:
The Acl Manager value Requested.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.

setAclManagers

public void setAclManagers(java.lang.String value)
                    throws AgentException
Handles the SNMP Set Request for aclManagers
Parameters:
value - The Acl Manager Value to be set.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.

getAclStatus

public java.lang.Integer getAclStatus()
                               throws AgentException
Handles the SNMP Get Request for aclStatus.
Returns:
The Acl Status value Requested.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.

setAclStatus

public void setAclStatus(java.lang.Integer value)
                  throws AgentException
Handles the SNMP Set Request for aclStatus.
Parameters:
value - The Acl Status to be set.
Throws:
AgentException - This Wraps all the Exceptions thrown while processing the event.