Class SnmpGetNextCriterion
java.lang.Object
org.sentrysoftware.metricshub.engine.connector.model.identity.criterion.Criterion
org.sentrysoftware.metricshub.engine.connector.model.identity.criterion.SnmpCriterion
org.sentrysoftware.metricshub.engine.connector.model.identity.criterion.SnmpGetNextCriterion
- All Implemented Interfaces:
Serializable
Represents an SNMP GET-NEXT criterion used for detection.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSnmpGetNextCriterion(String type, boolean forceSerialization, @NonNull String oid, String expectedResult) Constructs an SNMP GET-NEXT criterion with the specified type, forceSerialization flag, OID, and expected result. -
Method Summary
Modifier and TypeMethodDescriptionaccept(ICriterionProcessor criterionProcessor) Accepts the given criterion processor for evaluation.
-
Constructor Details
-
SnmpGetNextCriterion
public SnmpGetNextCriterion(String type, boolean forceSerialization, @NonNull @NonNull String oid, String expectedResult) Constructs an SNMP GET-NEXT criterion with the specified type, forceSerialization flag, OID, and expected result.- Parameters:
type- The type of the SNMP GET-NEXT criterion.forceSerialization- A flag indicating whether serialization should be forced.oid- The SNMP OID (Object Identifier) for the GET-NEXT operation.expectedResult- The expected result for the GET-NEXT operation, or null if no specific result is expected.
-
-
Method Details