@Path(value="/repo")
@Produces(value="application/json;charset=UTF-8")
@Consumes(value="application/json;charset=UTF-8")
public interface IRepo
| Modifier and Type | Method and Description |
|---|---|
void |
delete(java.lang.String name) |
void |
edit(Repo repo) |
void |
forceReindex(java.lang.String repoName) |
Repo[] |
get() |
Repo |
get(java.lang.String name) |
java.lang.Long |
newRepo(Repo repo) |
@GET
@RolesAllowed(value={"VIEW_CONFIGURATIONS","EDIT_CONFIGURATIONS"})
Repo[] get()
@GET
@Path(value="/{name}")
@RolesAllowed(value={"VIEW_CONFIGURATIONS","EDIT_CONFIGURATIONS"})
Repo get(@PathParam(value="name")
java.lang.String name)
@POST @RolesAllowed(value="EDIT_CONFIGURATIONS") java.lang.Long newRepo(Repo repo)
repo - the Repo@PUT @RolesAllowed(value="EDIT_CONFIGURATIONS") void edit(Repo repo)
repo - the Repo@DELETE
@Path(value="/{name}")
@RolesAllowed(value="EDIT_CONFIGURATIONS")
void delete(@PathParam(value="name")
java.lang.String name)
name - the name of the the Repo to delete@PUT
@Path(value="/{name}/forceupdate")
@RolesAllowed(value="EDIT_CONFIGURATIONS")
void forceReindex(@PathParam(value="name")
java.lang.String repoName)
repoName - the name of the the Repo to force the reindex onCopyright © 2017-2020 Cinovo AG. All Rights Reserved.