Uses of Interface
org.snmp4j.agent.request.Request
-
Packages that use Request Package Description org.snmp4j.agent org.snmp4j.agent.mo org.snmp4j.agent.mo.snmp org.snmp4j.agent.request -
-
Uses of Request in org.snmp4j.agent
Classes in org.snmp4j.agent with type parameters of type Request Modifier and Type Interface Description interface
RequestHandler<R extends Request>
A request handler is able to process a request on behalf of the managed object repository represented by aMOServer
.Fields in org.snmp4j.agent with type parameters of type Request Modifier and Type Field Description protected TemporaryList<Request>
CommandProcessor. requestList
Methods in org.snmp4j.agent with type parameters of type Request Modifier and Type Method Description protected <R extends Request<Source,Response,? extends SubRequest>,Source,Response>
voidCommandProcessor. processRequest(MOServer server, RequestHandler<R> handler, R req)
Processes (or re-process) a request and try to complete the request (thus to complete any incomplete subrequests).Methods in org.snmp4j.agent that return types with arguments of type Request Modifier and Type Method Description TemporaryList<Request>
CommandProcessor. getRequestList()
Methods in org.snmp4j.agent with parameters of type Request Modifier and Type Method Description protected void
CommandProcessor. setAuthorizationError(Request req, int vacmStatus)
-
Uses of Request in org.snmp4j.agent.mo
Fields in org.snmp4j.agent.mo with type parameters of type Request Modifier and Type Field Description protected java.util.WeakHashMap<Request,java.util.Map<org.snmp4j.smi.OID,R>>
DefaultMOTable. newRows
protected java.util.WeakHashMap<Request,java.util.Map<org.snmp4j.smi.OID,DefaultMOTable.ChangeSet>>
DefaultMOTable. pendingChanges
Methods in org.snmp4j.agent.mo with parameters of type Request Modifier and Type Method Description protected java.util.Map<org.snmp4j.smi.OID,R>
DefaultMOTable. getNewRows(Request key)
DefaultMOTable.ChangeSet
DefaultMOTable. getRowPreview(Request request, org.snmp4j.smi.OID index)
Gets aDefaultMOTable.ChangeSet
that contains the row values as if they had been already committed (not taking into account value modifications performed by the columns commit operations).protected boolean
DefaultMOTable. hasNewRows(Request key)
-
Uses of Request in org.snmp4j.agent.mo.snmp
Methods in org.snmp4j.agent.mo.snmp with parameters of type Request Modifier and Type Method Description org.snmp4j.smi.OID
UsmMIB. getProtocolForKeyChange(Request request, org.snmp4j.smi.OID rowIndex, org.snmp4j.security.dh.DHOperations.KeyType keyType)
-
Uses of Request in org.snmp4j.agent.request
Classes in org.snmp4j.agent.request with type parameters of type Request Modifier and Type Interface Description interface
RequestFactory<S extends java.util.EventObject,R,REQ extends Request<S,R,? extends SubRequest>>
TheRequestFactory
is a factory for (SNMP/AgentX) requests.Classes in org.snmp4j.agent.request that implement Request Modifier and Type Class Description class
AbstractRequest<U extends SubRequest,S,R>
TheAbstractRequest
implements common elements of SNMP and AgentX requests and might be also used for other sub-agent request types.class
SnmpRequest
TheSnmpRequest
class implements requests from a SNMP source.Methods in org.snmp4j.agent.request that return Request Modifier and Type Method Description Request
SubRequest. getRequest()
Gets the request this sub-request belongs to.
-