com.arextest.common.enums.AuthRejectStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arex-common Show documentation
Show all versions of arex-common Show documentation
arex-common is a Java common library.
package com.arextest.common.enums;
/**
* How to handle authentication failures.
* @author wildeslam.
* @create 2023/10/9 15:59
*/
public enum AuthRejectStrategy {
FAIL_RESPONSE,
DOWNGRADE,
;
}