Class 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.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • InfoMapResult

        public InfoMapResult()
    • 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.