Class InfoMapResult
- java.lang.Object
-
- com.tivoli.am.fim.authsvc.action.authenticator.infomap.InfoMapResult
-
public class InfoMapResult extends java.lang.Object
Captures the status of this Info Map invocation. Defaults result to false, and endPolicyWithoutCredential to false.
-
-
Constructor Summary
Constructors Constructor Description InfoMapResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
endPolicyWithoutCredential()
Set whether the running policy should be ended after this InfoMap invocation in an error case.boolean
getValue()
Get the result of this invocation.boolean
isEndPolicyWithoutCredential()
Get the currently set endPolicyWithoutCredential value.void
setValue(boolean value)
Set the result of this invocation.
-
-
-
Method Detail
-
getValue
public boolean getValue()
Get the result of this invocation. Defaults to false if not set.- Returns:
- true for success, or false for failure.
-
setValue
public void setValue(boolean value)
Set the result of this invocation. Set to true for success or false for failure.
-
endPolicyWithoutCredential
public void endPolicyWithoutCredential()
Set whether the running policy should be ended after this InfoMap invocation in an error case. No credential and no state ID are returned. An error message is returned.
-
isEndPolicyWithoutCredential
public boolean isEndPolicyWithoutCredential()
Get the currently set endPolicyWithoutCredential value.- Returns:
- true if
endPolicyWithoutCredential()
has been called. false otherwise.
-
-