Adds docs for config and me resources

This commit is contained in:
Johannes Schnatterer
2018-08-01 14:16:08 +02:00
parent 44d96f29ad
commit 11e2112e80
2 changed files with 6 additions and 0 deletions

View File

@@ -18,6 +18,9 @@ import javax.ws.rs.core.Context;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriInfo;
/**
* RESTful Web Service Resource to manage the configuration.
*/
@Path(ConfigResource.CONFIG_PATH_V2)
public class ConfigResource {

View File

@@ -19,6 +19,9 @@ import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriInfo;
/**
* RESTful Web Service Resource to get currently logged in users.
*/
@Path(MeResource.ME_PATH_V2)
public class MeResource {
static final String ME_PATH_V2 = "v2/me/";