public interface OrganizationResource
| Modifier and Type | Method and Description |
|---|---|
void |
clearAdminEvents() |
void |
clearEvents() |
DocumentsResource |
documents() |
List<AdminEventRepresentation> |
getAdminEvents() |
List<AdminEventRepresentation> |
getAdminEvents(String organizationName,
List<String> operationTypes,
String authOrganization,
String authUser,
String authIpAddress,
String resourcePath,
String dateFrom,
String dateTo,
Integer firstResult,
Integer maxResults,
List<String> resourceTypes) |
List<EventRepresentation> |
getEvents() |
List<EventRepresentation> |
getEvents(Integer firstResult,
Integer maxResults) |
javax.ws.rs.core.Response |
getFile() |
OrganizationEventsConfigRepresentation |
getOrganizationEventsConfig() |
javax.ws.rs.core.Response |
remove() |
OrganizationRepresentation |
toRepresentation() |
void |
update(OrganizationRepresentation organizationRepresentation) |
void |
updateOrganizationEventsConfig(OrganizationEventsConfigRepresentation rep) |
@GET @Produces(value="application/json") OrganizationRepresentation toRepresentation()
@PUT @Consumes(value="application/json") void update(OrganizationRepresentation organizationRepresentation)
@DELETE javax.ws.rs.core.Response remove()
@Path(value="documents") DocumentsResource documents()
@Path(value="files/{id}")
javax.ws.rs.core.Response getFile()
@GET @Path(value="events") @Produces(value="application/json") List<EventRepresentation> getEvents()
@Path(value="events") @GET @Produces(value="application/json") List<EventRepresentation> getEvents(@QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults)
@DELETE @Path(value="events") void clearEvents()
@GET @Path(value="admin-events") @Produces(value="application/json") List<AdminEventRepresentation> getAdminEvents()
@GET @Path(value="admin-events") @Produces(value="application/json") List<AdminEventRepresentation> getAdminEvents(@PathParam(value="organization") String organizationName, @QueryParam(value="operationTypes") List<String> operationTypes, @QueryParam(value="authOrganization") String authOrganization, @QueryParam(value="authUser") String authUser, @QueryParam(value="authIpAddress") String authIpAddress, @QueryParam(value="resourcePath") String resourcePath, @QueryParam(value="dateFrom") String dateFrom, @QueryParam(value="dateTo") String dateTo, @QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults, @QueryParam(value="resourceTypes") List<String> resourceTypes)
@DELETE @Path(value="admin-events") void clearAdminEvents()
@GET @Path(value="events/config") @Produces(value="application/json") OrganizationEventsConfigRepresentation getOrganizationEventsConfig()
@PUT @Path(value="events/config") @Consumes(value="application/json") void updateOrganizationEventsConfig(OrganizationEventsConfigRepresentation rep)
Copyright © 2017. All rights reserved.