Record Class GuardrailCheckResult
java.lang.Object
java.lang.Record
com.shaft.capture.guardrail.GuardrailCheckResult
- Record Components:
passed- whether no blocking (ERROR severity) findings were detectedviolations- blocking and advisory findings
public record GuardrailCheckResult(boolean passed, List<GuardrailViolation> violations)
extends Record
Result of checking generated or agent-authored code against SHAFT guardrails.
-
Constructor Summary
ConstructorsConstructorDescriptionGuardrailCheckResult(boolean passed, List<GuardrailViolation> violations) Creates an immutable guardrail check result. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanpassed()Returns the value of thepassedrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theviolationsrecord component.
-
Constructor Details
-
GuardrailCheckResult
Creates an immutable guardrail check result.
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
passed
-
violations
Returns the value of theviolationsrecord component.- Returns:
- the value of the
violationsrecord component
-