Class HtmlPagePauseTask

java.lang.Object
com.ibm.security.access.extension.authn.task.HtmlPageTask
com.ibm.security.access.extension.authn.task.HtmlPagePauseTask
All Implemented Interfaces:
AuthenticationMechanismResultPauseTask, AuthenticationMechanismResultTask

public class HtmlPagePauseTask extends HtmlPageTask implements AuthenticationMechanismResultPauseTask
This class represents a pause task that returns an HTML page.
  • Constructor Details

    • HtmlPagePauseTask

      public HtmlPagePauseTask()
      Create an HTML page pause task.
  • Method Details

    • getResumeUriBase

      public String getResumeUriBase()
      Get the base of the URI that the user must access to resume the execution of the current authentication mechanism.
      Returns:
      The base of the URI.
    • setResumeUriBase

      public void setResumeUriBase(String base)
      Description copied from interface: AuthenticationMechanismResultPauseTask
      This method is invoked by authentication service to inform this result pause task the base of the URI that the user must access to resume the execution of the current authentication mechanism.
      Specified by:
      setResumeUriBase in interface AuthenticationMechanismResultPauseTask
      Parameters:
      base - The base of the URI.
    • getResumeUriParameters

      public Map<String,String> getResumeUriParameters()
      Get the query string parameters of the URI that the user must access to resume the execution of the current authentication mechanism.
      Returns:
      The query string parameters.
    • setResumeUriParameters

      public void setResumeUriParameters(Map<String,String> parameters)
      Set the query string parameters of the URI that the user must access to resume the execution of the current authentication mechanism.
      Parameters:
      parameters - The query string parameters.
    • getResumeUriParameter

      public String getResumeUriParameter(String name)
      Get the value of query string parameter with the specified name of the URI that the user must access to resume the execution of the current authentication mechanism.
      Parameters:
      name - The query string parameter name.
      Returns:
      The query string parameter value.
    • setResumeUriParameter

      public void setResumeUriParameter(String name, String value)
      Description copied from interface: AuthenticationMechanismResultPauseTask
      This method is invoked by authentication service to inform this result pause task the query string parameter of the URI that the user must access to resume the execution of the current authentication mechanism.
      Specified by:
      setResumeUriParameter in interface AuthenticationMechanismResultPauseTask
      Parameters:
      name - The query string parameter name.
      value - The query string parameter value.