Class ActionsFilter

java.lang.Object
com.auth0.client.mgmt.filter.BaseFilter
com.auth0.client.mgmt.filter.ActionsFilter

public class ActionsFilter extends BaseFilter
Used to filter the results when getting all actions.
See Also:
  • Constructor Details

    • ActionsFilter

      public ActionsFilter()
  • Method Details

    • withTriggerId

      public ActionsFilter withTriggerId(String triggerId)
      Filters the result by a trigger ID
      Parameters:
      triggerId - the trigger ID to filter the results by
      Returns:
      this filter instance
    • withActionName

      public ActionsFilter withActionName(String actionName)
      Filters the result by the name of an action
      Parameters:
      actionName - the name of the action to filter by
      Returns:
      this filter instance
    • withDeployed

      public ActionsFilter withDeployed(Boolean deployed)
      Filters the result by its deployment status
      Parameters:
      deployed - when true, only deployed actions will be returned
      Returns:
      this filter instance
    • withInstalled

      public ActionsFilter withInstalled(Boolean installed)
      Filters the result by its installation status
      Parameters:
      installed - when true, only installed actions will be returned
      Returns:
      this filter instance
    • withPage

      public ActionsFilter withPage(int pageNumber, int amountPerPage)
      Filter by page
      Parameters:
      pageNumber - the page number to retrieve.
      amountPerPage - the amount of items per page to retrieve.
      Returns:
      this filter instance