public enum Endpoints extends Enum<Endpoints>
| Modifier and Type | Method and Description |
|---|---|
static Endpoints |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Endpoints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Description(content="Lists all the endpoints this instance of gateway supports.") public static final Endpoints ListEndpoints
@Description(content="Given an endpoint, the request processor returns the metadat of that endpoint.") public static final Endpoints EndpointMetadata
@Description(content="Allows to check if a EmailId or PhoneNo is already registered.") public static final Endpoints UserProfileExists
@Description(content="Enables the user to register for the application.") public static final Endpoints SignUp
@Description(content="Allows the user to login and on succesful login creates a session.") public static final Endpoints Login
@Description(content="Enables the user to generate a temporary password in the the event the user does not remember the password.") public static final Endpoints GenerateResetToken
@Description(content="Allows for Multi-factor Authentication check post Login.") public static final Endpoints MFAValidation
@Description(content="Allows the user to change passoword post login.") public static final Endpoints ChangePassword
@Description(content="Allows the user to logout and terminates the session.") public static final Endpoints Logout
@Description(content="A systematic approach to keep the socket alive.") public static final Endpoints Ping
@Description(content="A systematic approach to keep the session alive.") public static final Endpoints KeepSessionAlive
@Description(content="During registration process this endpoint helps in creation of a basic profile.") public static final Endpoints CreateUserProfile
@Description(content="Allows the user to update the details of the profile.") public static final Endpoints UpdateUserProfile
@Description(content="Returns the latest user profile.") public static final Endpoints GetUserProfile
@Description(content="Returns user preferences that are captured systematically.") public static final Endpoints GetUserPreferences
@Description(content="Updates the user preferences through the course of application usage.") public static final Endpoints UpdateUserPreferences
@Description(content="Returns any configuration required by the client application.") public static final Endpoints GetConfiguration
@Description(content="Registers the current connection to receive application and system notifications.") public static final Endpoints Subscribe
@Description(content="Given what user typed, this returns back auto/smart suggestions.") public static final Endpoints AutoSuggest
@Description(content="") public static final Endpoints GetLocation
@Description(content="") public static final Endpoints SetLocation
public static Endpoints[] values()
for (Endpoints c : Endpoints.values()) System.out.println(c);
public static Endpoints valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.