toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AuthenticateOidcActionConditionalBehaviorEnum.deny:
      return 'deny';
    case AuthenticateOidcActionConditionalBehaviorEnum.allow:
      return 'allow';
    case AuthenticateOidcActionConditionalBehaviorEnum.authenticate:
      return 'authenticate';
  }
}