Interface ApplicationApi
-
@Path("/v4/") @Consumes("application/json") @Produces("application/json") public interface ApplicationApi- Author:
- gv
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TenantInfo>listTenants()TenantResourcetenant(TenantId tenantId)
-
-
-
Method Detail
-
listTenants
@GET @Path("tenant") List<TenantInfo> listTenants()
-
tenant
@Path("tenant/{tenantId}") TenantResource tenant(@PathParam("tenantId") TenantId tenantId)
-
-