Package | Description |
---|---|
ej.hoka.auth.session |
Utility classes to quickly setup authentication using cookie-based sessions.
|
ej.hoka.rest |
This package gather classes used for exposing a REST API.
|
ej.hoka.rest.endpoint |
This package gather implementations of standard endpoints.
|
Modifier and Type | Class and Description |
---|---|
class |
LoginEndpoint
RestEndpoint that logs in users using cookie-based sessions.
|
class |
LogoutEndpoint
RestEndpoint that logs out users using cookie-based sessions.
|
Modifier and Type | Method and Description |
---|---|
void |
RestAuthenticatedRequestHandler.addEndpoint(RestEndpoint endpoint)
Add an endpoint to this handler.
|
Modifier and Type | Method and Description |
---|---|
void |
RestRequestHandler.addEndpoint(RestEndpoint endpoint)
Adds an endpoint to this handler.
|
Modifier and Type | Class and Description |
---|---|
class |
AliasEndpoint
An endpoint forwarding its requests to another
RestEndpoint . |
class |
GzipResourceEndpoint
A static resource end-point to serve gzip files.
|
class |
ResourceRestEndpoint
A static resource end-point to serve all kind of files.
|
Modifier and Type | Method and Description |
---|---|
RestEndpoint |
AliasEndpoint.getEndpoint()
Gets the endpoint.
|
Modifier and Type | Method and Description |
---|---|
void |
AliasEndpoint.setEndpoint(RestEndpoint endpoint)
Sets the endpoint.
|
Constructor and Description |
---|
AliasEndpoint(java.lang.String uri,
RestEndpoint endpoint)
Instantiates a
AliasEndpoint . |