@Path(value="resourcesHistory") public interface ResourceHistoryService extends JAXRSService
PARAM_ANYTYPE_KIND, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_RESOURCE, PARAM_SIZE| Modifier and Type | Method and Description |
|---|---|
void |
delete(String key)
Deletes the resource configuration history matching the provided key.
|
List<ResourceHistoryConfTO> |
list(String resourceKey)
Returns a list of all resource configuration history for the given resource key.
|
void |
restore(String key)
Restores the resource configuration history matching the provided key.
|
@GET
@Path(value="{resourceKey}")
@Produces(value={"application/json","application/yaml","application/xml"})
List<ResourceHistoryConfTO> list(@NotNull @PathParam(value="resourceKey")
String resourceKey)
resourceKey - resource key@POST
@Path(value="{key}")
@Produces(value={"application/json","application/yaml","application/xml"})
void restore(@NotNull @PathParam(value="key")
String key)
key - resource configuration history key to be restored@DELETE
@Path(value="{key}")
@Produces(value={"application/json","application/yaml","application/xml"})
void delete(@NotNull @PathParam(value="key")
String key)
key - resource configuration history key to be deletedCopyright © 2010–2020 The Apache Software Foundation. All rights reserved.