Uses of Interface
org.snmp4j.agent.MOScope
-
-
Uses of MOScope in org.snmp4j.agent
Subinterfaces of MOScope in org.snmp4j.agent Modifier and Type Interface Description interface
MOContextScope
TheMOContextScope
extends theMOScope
by applying a scope to a context.interface
MOQuery
A managed object query is used to lookup managed objects, for example in aMOServer
repository.interface
MutableMOScope
TheMutableMOScope
interface describes a mutable scope as needed for query processing.Classes in org.snmp4j.agent that implement MOScope Modifier and Type Class Description class
DefaultMOContextScope
TheDefaultMOContextScope
is the default implementation of aMOContextScope
representing an OID scope that distinguishes between different contexts.class
DefaultMOQuery
TheDefaultMOQuery
class is the default implementation of a managed object query.class
DefaultMOScope
class
MOQueryWithSource
TheMOQueryWithSource
class is the implementation of a managed object query for aRequest
.Methods in org.snmp4j.agent that return MOScope Modifier and Type Method Description MOScope
DuplicateRegistrationException. getRegisteredScope()
Returns the scope that is already registered and overlaps with the scope returned byDuplicateRegistrationException.getRegistrationScope()
.MOScope
DuplicateRegistrationException. getRegistrationScope()
Returns the scope of the failed registration attempt.MOScope
ManagedObject. getScope()
Returns the scope of object identifiers this managed object is managing.Methods in org.snmp4j.agent that return types with arguments of type MOScope Modifier and Type Method Description Map<org.snmp4j.smi.OctetString,MOScope>
DefaultMOServer. getRegisteredScopes(ManagedObject<?> managedObject)
Map<org.snmp4j.smi.OctetString,MOScope>
MOServer. getRegisteredScopes(ManagedObject<?> managedObject)
Returns the scopesMOScope
orMOContextScope
for which the suppliedManagedObject
has been registered in a map indexed by context.SortedMap<MOScope,ManagedObject<?>>
DefaultMOServer. getRegistry()
Iterator<Map.Entry<MOScope,ManagedObject<?>>>
DefaultMOServer. iterator()
Iterator<Map.Entry<MOScope,ManagedObject<?>>>
DefaultMOServer. iterator(Comparator<MOScope> comparator, MOFilter moFilter)
Iterator<Map.Entry<MOScope,ManagedObject<?>>>
MOServer. iterator()
Return a read-onlyIterator
over the content of this server.default Iterator<Map.Entry<MOScope,ManagedObject<?>>>
MOServer. iterator(Comparator<MOScope> comparator)
Return anIterator
on the registeredManagedObject
s of this server in order defined by the given comparator.Iterator<Map.Entry<MOScope,ManagedObject<?>>>
MOServer. iterator(Comparator<MOScope> comparator, MOFilter moFilter)
Return anIterator
on the registeredManagedObject
s of this server in order defined by the given comparator and filtered.Methods in org.snmp4j.agent with parameters of type MOScope Modifier and Type Method Description int
MOScopeComparator. compare(MOScope o1, MOScope o2)
Compares a scope with another scope or query.boolean
DefaultMOScope. covers(MOScope covered)
Indicates whether this scope covers by the supplied one, that is whether the lower bound of this scope is less or equal to the lower bound of the covered scope and if the upper bound is greater or equal to the upper bound of the covered scope.static boolean
DefaultMOScope. covers(MOScope scope, MOScope covered)
Indicates whether the first supplied scope covers by second one.org.snmp4j.smi.OID
ManagedObject. find(MOScope range)
Finds the first object ID (OID) in the specified search range.static boolean
DefaultMOContextScope. isContextMatching(MOScope a, MOScope b)
Indicates whether the given scopes have a matching context.boolean
DefaultMOContextScope. isCovered(MOScope other)
boolean
DefaultMOQuery. isCovered(MOScope other)
boolean
DefaultMOScope. isCovered(MOScope other)
boolean
MOScope. isCovered(MOScope other)
Checks whether the supplied scope is covered by this scope.boolean
DefaultMOContextScope. isOverlapping(MOScope other)
boolean
DefaultMOQuery. isOverlapping(MOScope other)
boolean
DefaultMOScope. isOverlapping(MOScope other)
boolean
MOScope. isOverlapping(MOScope other)
Checks whether the supplied scope overlap with this one, thus sharing at least one OID with the supplied one.static boolean
MOScopeComparator. isQueryContextMatching(MOQuery a, MOScope b)
Indicates whether the given query's context matches the context of the given scope.static boolean
DefaultMOScope. overlaps(MOScope scope, MOScope intersected)
Indicates whether the first scope supplied overlaps with the second one.void
DefaultMOQuery. substractScope(MOScope scope)
void
DefaultMOScope. substractScope(MOScope scope)
void
MOQuery. substractScope(MOScope scope)
Changes the query to no longer match (cover) the specified scope.void
MutableMOScope. substractScope(MOScope scope)
Changes the scope to no longer cover any elements in covered by the specified scope.Method parameters in org.snmp4j.agent with type arguments of type MOScope Modifier and Type Method Description Iterator<Map.Entry<MOScope,ManagedObject<?>>>
DefaultMOServer. iterator(Comparator<MOScope> comparator, MOFilter moFilter)
default Iterator<Map.Entry<MOScope,ManagedObject<?>>>
MOServer. iterator(Comparator<MOScope> comparator)
Return anIterator
on the registeredManagedObject
s of this server in order defined by the given comparator.Iterator<Map.Entry<MOScope,ManagedObject<?>>>
MOServer. iterator(Comparator<MOScope> comparator, MOFilter moFilter)
Return anIterator
on the registeredManagedObject
s of this server in order defined by the given comparator and filtered.Constructors in org.snmp4j.agent with parameters of type MOScope Constructor Description DefaultMOContextScope(org.snmp4j.smi.OctetString context, MOScope extendedScope)
Creates a context scope from a plain OID scope.DefaultMOScope(MOScope other)
Creates a scope from another scope by referencing its bound values.DuplicateRegistrationException(MOScope registrationScope)
DuplicateRegistrationException(MOScope registrationScope, MOScope registeredScope)
-
Uses of MOScope in org.snmp4j.agent.mo
Classes in org.snmp4j.agent.mo that implement MOScope Modifier and Type Class Description class
DefaultMOTable<R extends MOTableRow,C extends MOColumn,M extends MOTableModel<R>>
TheDefaultMOTable
class is the default implementation of theMOTable
class.class
MOScalar<V extends org.snmp4j.smi.Variable>
TheMOScalar
class represents scalar SNMP managed objects.Methods in org.snmp4j.agent.mo that return MOScope Modifier and Type Method Description MOScope
DefaultMOTable. getScope()
MOScope
MOScalar. getScope()
Returns the scope of OIDs that are covered by this scalar's object registration.MOScope
MOScalar. getSingleInstanceScope()
Returns a scope that covers only the scalar instance itself without any possible OIDs down in the tree or at the same level.Methods in org.snmp4j.agent.mo with parameters of type MOScope Modifier and Type Method Description org.snmp4j.smi.OID
DefaultMOTable. find(MOScope range)
org.snmp4j.smi.OID
MOScalar. find(MOScope range)
org.snmp4j.smi.OID
MOTable. find(MOScope range)
Finds the object identifier of the first object instance in the specified range.protected MOTableCellInfo
DefaultMOTable. findCell(MOScope range, SubRequest<?> request)
boolean
DefaultMOTable. isCovered(MOScope other)
boolean
MOScalar. isCovered(MOScope other)
boolean
DefaultMOTable. isOverlapping(MOScope other)
boolean
MOScalar. isOverlapping(MOScope other)
void
DefaultMOTable. update(MOScope updateScope)
Update the content of this table that is covered by the supplied scope.protected void
DefaultMOTable. update(MOScope range, SubRequest<?> request)
Update this table for the supplied search range and sub-request if it has not yet been updated for that request. -
Uses of MOScope in org.snmp4j.agent.mo.ext
Classes in org.snmp4j.agent.mo.ext that implement MOScope Modifier and Type Class Description class
AgentppSimulationMib.AgentppSimDeleteRow
class
AgentppSimulationMib.AgentppSimDeleteTableContents
class
AgentppSimulationMib.AgentppSimMode
Methods in org.snmp4j.agent.mo.ext that return MOScope Modifier and Type Method Description MOScope
StaticMOGroup. getScope()
Methods in org.snmp4j.agent.mo.ext with parameters of type MOScope Modifier and Type Method Description org.snmp4j.smi.OID
StaticMOGroup. find(MOScope range)
-
Uses of MOScope in org.snmp4j.agent.mo.snmp
Classes in org.snmp4j.agent.mo.snmp that implement MOScope Modifier and Type Class Description class
DateAndTimeScalar<T extends org.snmp4j.smi.OctetString>
TheDateAndTimeScalar
implements the DateAndTime textual convention (TC) from the SNMPv2-TC MIB specification for scalar objects.class
DisplayStringScalar<V extends org.snmp4j.smi.OctetString>
TheDisplayStringScalar
class implements the DisplayString textual convention as defined by the SNMPv2-TC MIB specification for scalar objects.class
EnumeratedScalar<V extends org.snmp4j.smi.Variable>
TheEnumeratedScalar
class represents enumerated SMI INTEGER (=Integer32
) or an OCTET STRING with enumerated named bits for scalar objects.class
NotificationLogMib.NlmConfigGlobalAgeOut
class
NotificationLogMib.NlmConfigGlobalEntryLimit
class
SnmpTsmMib.SnmpTsmConfigurationUsePrefix
class
SNMPv2MIB.SysOREntry
static class
SNMPv2MIB.SysUpTimeImpl
class
TestAndIncr
class
TimeStampScalar
-
Uses of MOScope in org.snmp4j.agent.mo.snmp.dh
Classes in org.snmp4j.agent.mo.snmp.dh that implement MOScope Modifier and Type Class Description class
SnmpUsmDhObjectsMib.UsmDHParameters
class
UsmDHParametersImpl
TheUsmDHParametersImpl
class holds the Diffie Hellman parameters for doing a Diffie-Hellman key agreement. -
Uses of MOScope in org.snmp4j.agent.mo.snmp4j
Classes in org.snmp4j.agent.mo.snmp4j that implement MOScope Modifier and Type Class Description class
Snmp4jConfigMib.Snmp4jCfgReset
class
Snmp4jConfigMib.Snmp4jCfgSecSrcAddrValidation
Methods in org.snmp4j.agent.mo.snmp4j that return MOScope Modifier and Type Method Description MOScope
MOSubtreeProxy. getScope()
Methods in org.snmp4j.agent.mo.snmp4j with parameters of type MOScope Modifier and Type Method Description org.snmp4j.smi.OID
MOSubtreeProxy. find(MOScope range)
-
Uses of MOScope in org.snmp4j.agent.request
Methods in org.snmp4j.agent.request that return MOScope Modifier and Type Method Description protected MOScope
SnmpRequest.SnmpSubRequest. getNextScope(org.snmp4j.smi.OID previousOID)
MOScope
SnmpRequest.SnmpSubRequest. getScope()
MOScope
SubRequest. getScope()
Gets the scope for this subrequest. -
Uses of MOScope in org.snmp4j.agent.util
Classes in org.snmp4j.agent.util that implement MOScope Modifier and Type Class Description class
OIDScope
Methods in org.snmp4j.agent.util with parameters of type MOScope Modifier and Type Method Description int
MOScopePriorityComparator. compare(MOScope o1, MOScope o2)
boolean
OIDScope. isCovered(MOScope other)
boolean
OIDScope. isOverlapping(MOScope other)
-