Package com.jalios.rest.client
Interface Authentication
-
- All Known Implementing Classes:
AuthKeyAuthentication,BasicAuthentication,JWTAuthentication
public interface AuthenticationInterface implemented by the REST Client authentication (as Basic, JCMS, Strong, ...)- Since:
- JCMS-6.0
- Author:
- dissert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddAuthentication(org.restlet.data.Request request)booleanisDeprecated()A authentication may be available for a few time.org.restlet.data.ResponseupdateAuthenticationResult(ClientSession session, org.restlet.data.Request request, org.restlet.data.Response response)
-
-
-
Method Detail
-
addAuthentication
void addAuthentication(org.restlet.data.Request request)
-
updateAuthenticationResult
org.restlet.data.Response updateAuthenticationResult(ClientSession session, org.restlet.data.Request request, org.restlet.data.Response response)
-
isDeprecated
boolean isDeprecated()
A authentication may be available for a few time. If it is no longer, it is Deprecated- Returns:
- true if the method is no longer available
-
-