java.lang.Object
com.djrapitops.plan.delivery.webserver.resolver.json.VersionJSONResolver
- All Implemented Interfaces:
Resolver
@Path("/v1/version")
public class VersionJSONResolver
extends Object
implements Resolver
Resolves requests for /v1/version.
-
Constructor Summary
Constructors
-
Method Summary
boolean
Implement access control if authorization is enabled.
Implement request resolution.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
VersionJSONResolver
@Inject
public VersionJSONResolver(@Named("currentVersion")
String currentVersion,
VersionChecker versionChecker)
-
Method Details
-
canAccess
public boolean canAccess(Request request)
Description copied from interface: Resolver
Implement access control if authorization is enabled.
Is not called when access control is not active.
- Specified by:
canAccess
in interface Resolver
- Parameters:
request
- HTTP request, contains all information necessary to check access.
- Returns:
- true if allowed or invalid target, false if response should be 403 (forbidden)
- See Also:
-
-
resolve
Description copied from interface: Resolver
Implement request resolution.
- Specified by:
resolve
in interface Resolver
- Parameters:
request
- HTTP request, contains all information necessary to resolve the request.
- Returns:
- Response or empty if the response should be 404 (not found).
- See Also:
-