Uses of Class
com.authlete.common.api.AuthleteApiBasicImpl.HttpMethod
-
Packages that use AuthleteApiBasicImpl.HttpMethod Package Description com.authlete.common.api The definition of Authlete API (AuthleteApi
) and the factory class (AuthleteApiFactory
). -
-
Uses of AuthleteApiBasicImpl.HttpMethod in com.authlete.common.api
Methods in com.authlete.common.api that return AuthleteApiBasicImpl.HttpMethod Modifier and Type Method Description static AuthleteApiBasicImpl.HttpMethod
AuthleteApiBasicImpl.HttpMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static AuthleteApiBasicImpl.HttpMethod[]
AuthleteApiBasicImpl.HttpMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.authlete.common.api with parameters of type AuthleteApiBasicImpl.HttpMethod Modifier and Type Method Description protected <TResponse>
TResponseAuthleteApiBasicImpl. callApi(AuthleteApiBasicImpl.HttpMethod method, String auth, String path, Map<String,Object[]> queryParams, Object requestBody, Class<TResponse> responseClass, Options options)
Call an API with centralized context handling.protected <TResponse>
TResponseAuthleteApiBasicImpl. callApiWith4xxHandling(AuthleteApiBasicImpl.HttpMethod method, String auth, String path, Map<String,Object[]> queryParams, Object requestBody, Class<TResponse> responseClass, Options options, AuthleteApiBasicImpl.NotFoundHandling notFoundHandling, AuthleteApiBasicImpl.ClientErrorHandling clientErrorHandling)
Call an API with centralized context handling and specified 4xx handling strategies.protected <TResponse>
TResponseAuthleteApiBasicImpl. callApiWithNotFoundHandling(AuthleteApiBasicImpl.HttpMethod method, String auth, String path, Map<String,Object[]> queryParams, Object requestBody, Class<TResponse> responseClass, Options options, AuthleteApiBasicImpl.NotFoundHandling notFoundHandling)
Call an API with centralized context handling and specified 404 handling strategy.
-