toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ActionTypeEnum.forward:
      return 'forward';
    case ActionTypeEnum.authenticateOidc:
      return 'authenticate-oidc';
    case ActionTypeEnum.authenticateCognito:
      return 'authenticate-cognito';
    case ActionTypeEnum.redirect:
      return 'redirect';
    case ActionTypeEnum.fixedResponse:
      return 'fixed-response';
  }
}