Uses of Class
com.authlete.common.types.UserCodeCharset
-
Packages that use UserCodeCharset Package Description com.authlete.common.dto Requests to and responses from Authlete APIs and some data structures.com.authlete.common.types Enum definitions and lists of pre-defined constants.com.authlete.common.util Utility classes. -
-
Uses of UserCodeCharset in com.authlete.common.dto
Methods in com.authlete.common.dto that return UserCodeCharset Modifier and Type Method Description UserCodeCharset
Service. getUserCodeCharset()
Get the character set for end-user verification codes (user_code
) for Device Flow.Methods in com.authlete.common.dto with parameters of type UserCodeCharset Modifier and Type Method Description Service
Service. setUserCodeCharset(UserCodeCharset charset)
Set the character set for end-user verification codes (user_code
) for Device Flow. -
Uses of UserCodeCharset in com.authlete.common.types
Methods in com.authlete.common.types that return UserCodeCharset Modifier and Type Method Description static UserCodeCharset
UserCodeCharset. getByValue(short value)
Find an instance of this enum by a value.static UserCodeCharset[]
UserCodeCharset. toArray(int bits)
static UserCodeCharset
UserCodeCharset. valueOf(String name)
Returns the enum constant of this type with the specified name.static UserCodeCharset[]
UserCodeCharset. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.authlete.common.types that return types with arguments of type UserCodeCharset Modifier and Type Method Description static EnumSet<UserCodeCharset>
UserCodeCharset. toSet(int bits)
static EnumSet<UserCodeCharset>
UserCodeCharset. toSet(UserCodeCharset[] array)
Methods in com.authlete.common.types with parameters of type UserCodeCharset Modifier and Type Method Description static EnumSet<UserCodeCharset>
UserCodeCharset. toSet(UserCodeCharset[] array)
Method parameters in com.authlete.common.types with type arguments of type UserCodeCharset Modifier and Type Method Description static int
UserCodeCharset. toBits(EnumSet<UserCodeCharset> set)
-
Uses of UserCodeCharset in com.authlete.common.util
Methods in com.authlete.common.util with parameters of type UserCodeCharset Modifier and Type Method Description UserCodeGenerator
UserCodeGenerator. setCharacters(UserCodeCharset charset)
Set characters that may appear in generated user codes.Constructors in com.authlete.common.util with parameters of type UserCodeCharset Constructor Description UserCodeGenerator(UserCodeCharset charset)
Constructor.UserCodeGenerator(UserCodeCharset charset, int length)
Constructor.UserCodeGenerator(UserCodeCharset charset, int length, Random random)
Constructor.
-