Package step.controller.multitenancy
Class TenantServices
- java.lang.Object
-
- step.framework.server.AbstractServices<step.core.access.User>
-
- step.core.deployment.AbstractStepServices
-
- step.controller.multitenancy.TenantServices
-
@Singleton @Path("tenants") public class TenantServices extends step.core.deployment.AbstractStepServices
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TenantServices.MoveEntitiesParameters
static class
TenantServices.MoveEntitiesResult
static class
TenantServices.ProjectMemberResponse
-
Constructor Summary
Constructors Constructor Description TenantServices()
-
Method Summary
-
Methods inherited from class step.core.deployment.AbstractStepServices
getContext, getExecutionRunnable, getObjectEnricher, getObjectFilter, getScheduler
-
-
-
-
Method Detail
-
init
@PostConstruct public void init() throws Exception
- Overrides:
init
in classstep.core.deployment.AbstractStepServices
- Throws:
Exception
-
getAllAvailableTenants
@GET @Path("/") @Consumes("application/json") @Produces("application/json") public List<Tenant> getAllAvailableTenants()
-
getAvailableTenantsOfUser
@GET @Path("/user/{id}") @Consumes("application/json") @Produces("application/json") public List<Tenant> getAvailableTenantsOfUser(@PathParam("id") String id)
-
selectTenant
@POST @Consumes("application/json") @Path("/current") public void selectTenant(String tenantName) throws Exception
- Throws:
Exception
-
getCurrentTenant
@GET @Consumes("application/json") @Produces("application/json") @Path("/current") public Tenant getCurrentTenant()
-
saveProject
@POST @Path("/project") @Consumes("application/json") @Produces("application/json") public Project saveProject(Project project)
-
updateProject
@POST @Path("/project/{id}") @Consumes("application/json") @Produces("application/json") public Project updateProject(@PathParam("id") String id, Project project)
-
getProject
@GET @Path("/project/{id}") @Consumes("application/json") @Produces("application/json") public Project getProject(@PathParam("id") String id)
-
deleteProject
@DELETE @Path("/project/{id}") @Consumes("application/json") @Produces("application/json") public void deleteProject(@PathParam("id") String id, Project project)
-
getAllProjects
@GET @Path("/projects") @Consumes("application/json") @Produces("application/json") public List<Project> getAllProjects()
-
searchProjectByAttributes
@POST @Path("/project/search") @Consumes("application/json") @Produces("application/json") public Project searchProjectByAttributes(Map<String,String> attributes)
-
readProject
@GET @Path("/project") @Consumes("application/json") @Produces("application/json") public Project readProject(Project project)
-
moveEntities
@POST @Path("/entities/{entityName}/bulk/move") @Consumes("application/json") @Produces("application/json") public step.controller.services.async.AsyncTaskStatus<TenantServices.MoveEntitiesResult> moveEntities(@PathParam("entityName") String entityName, TenantServices.MoveEntitiesParameters parameter)
-
assignUnassignedEntities
@POST @Path("/project/{id}/unassigned-entities") @Consumes("application/json") @Produces("application/json") public step.controller.services.async.AsyncTaskStatus<?> assignUnassignedEntities(@PathParam("id") String id, @QueryParam("simulate") boolean simulate)
-
getProjectMembers
@GET @Path("/project/{id}/members") @Consumes("application/json") @Produces("application/json") public List<TenantServices.ProjectMemberResponse> getProjectMembers(@PathParam("id") String projectId)
-
addMemberToProject
@POST @Path("/project/{id}/members/{userid}") @Consumes("application/json") public void addMemberToProject(@PathParam("id") String projectId, @PathParam("userid") String userid, String roleInProject)
-
-