org.snmp4j.agent |
|
Java Source File Name | Type | Comment |
BaseAgent.java | Class | The BaseAgent abstract class defines a framework for writing
SNMP agents using the SNMP4J-Agent API. |
CommandProcessor.java | Class | The CommandProcessor is the central glue code that puts together
the various sub-systems of a SNMP agent. |
ContextEvent.java | Class | The ContextEvent object describes an event that added or removed
a context to/from a system. |
ContextListener.java | Interface | A ContextListener can be informed about new contexts or when
a context is removed from a system. |
DefaultMOContextScope.java | Class | The DefaultMOContextScope is the default implementation of
a
MOContextScope representing an OID scope that distinguishes between
different contexts. |
DefaultMOQuery.java | Class | The DefaultMOQuery class is the default implementation of a
managed object query. |
DefaultMOScope.java | Class | The DefaultMOScope is the default
MOScope and
MutableMOScope implementation. |
DefaultMOServer.java | Class | The default MO server implementation uses a sorted map for the managed object
registry. |
DuplicateRegistrationException.java | Class | A DuplicateRegistrationException is thrown when a managed object
registration attempt conflicts with an existing registration because their
scope's overlap. |
ManagedObject.java | Interface | The ManagedObject interface defines the basic operations
for all SNMP(4J) manageable objects. |
MOAccess.java | Interface | The MOAccess interface defines means to determine the maximum
access supported by a managed object. |
MOContextScope.java | Interface | The MOContextScope extends the MOScope by applying
a scope to a context. |
MOException.java | Class | The MOException is the base class for all exceptions thrown
while managing
ManagedObject s. |
MOGroup.java | Interface | A MOGroup instance is a group of ManagedObject s. |
MOQuery.java | Interface | A managed object query is used to lookup managed objects, for example in
a
MOServer repository. |
MOScope.java | Interface | A managed object scope defines a contiguos region within the global OID
space. |
MOScopeComparator.java | Class | The MOScopeComparator compares two scopes with each other or
it compares a scope and a
MOQuery with each other.
Two scopes are compared by their context (if both are
MOContextScope instances) first and then by their lower bound.
A scope is compared with a query by comparing the scope with the queries
scope and then if both are deemed to be equal, the upper bound of the scope
is checked. |
MOServer.java | Interface | The managed object server interface defines the services that a repository
of managed objects needs to provide for a command responder. |
MOServerLookupEvent.java | Class | A MOServerLookupEvent describes a lookup of a managed object
within a
MOServer repository. |
MOServerLookupListener.java | Interface | An object that is interested in callback notifications of lookup events
on a MOServer instance has to implement the
MOServerLookupListener interface. |
MutableMOScope.java | Interface | The MutableMOScope interface describes a mutable scope
as needed for query processing. |
NotificationOriginator.java | Interface | The NotificationOriginator specifies the interface for
classes providing notification sending. |
NotificationTask.java | Class | The NotificationTask is a Runnable that sends
a notifcation or a series of notifications/traps/informs - depending
on the configuration associated with the supplied
NotificationOriginator . |
ProxyForwarder.java | Interface | The ProxyForwarder class represents a proxy forwarder instance
as defined by RFC 3413. |
ProxyForwardRequest.java | Class | To (proxy) forward a request or notification to a target, the
original command responder event, the context engine ID, and context
are required information. |
ProxyMap.java | Class | The ProxyMap maps context engine IDs in conjunction with a
proxy usage type to a ProxyForwarder instance. |
RequestHandler.java | Interface | A request handler is able to process a request on behalf of the managed
object repository represented by a
MOServer . |
SerializableManagedObject.java | Interface | The SerializableManagedObject interface is implemented by
ManagedObject s whose (data) content can be serialized
using
MOInput and
MOOutput . |