Class History
- java.lang.Object
 - 
- org.linuxforhealth.fhir.server.resources.FHIRResource
 - 
- org.linuxforhealth.fhir.server.resources.History
 
 
 
- 
@Path("/") @Consumes({"application/fhir+json","application/json","application/fhir+xml","application/xml"}) @Produces({"application/fhir+json","application/json","application/fhir+xml","application/xml"}) @RolesAllowed("FHIRUsers") @RequestScoped public class History extends FHIRResource 
- 
- 
Field Summary
- 
Fields inherited from class org.linuxforhealth.fhir.server.resources.FHIRResource
AUDIT_LOGGING_ERR_MSG, context, fhirConfig, HTTP_DATETIME_FORMATTER, httpServletRequest, searchHelper, securityContext, uriInfo 
 - 
 
- 
Constructor Summary
Constructors Constructor Description History() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Responsehistory(java.lang.String type, java.lang.String id)javax.ws.rs.core.ResponsesystemHistory()javax.ws.rs.core.ResponsetypeHistory(java.lang.String type)- 
Methods inherited from class org.linuxforhealth.fhir.server.resources.FHIRResource
addETagAndLastModifiedHeaders, addHeaders, addHeaders, buildAbsoluteUri, buildOperationOutcomeIssue, buildRestException, buildRestException, buildUnsupportedResourceTypeException, checkInitComplete, checkType, exceptionResponse, exceptionResponse, exceptionResponse, exceptionResponse, getFhirVersion, getPersistenceImpl, getRequestUri, getSearchHelper, isDeleteSupported, isUpdateCreateEnabled, parseIfModifiedSince, toUri 
 - 
 
 - 
 
- 
- 
Method Detail
- 
history
@GET @Path("{type}/{id}/_history") public javax.ws.rs.core.Response history(@PathParam("type") java.lang.String type, @PathParam("id") java.lang.String id) 
- 
systemHistory
@GET @Path("_history") public javax.ws.rs.core.Response systemHistory() 
- 
typeHistory
@GET @Path("{type}/_history") public javax.ws.rs.core.Response typeHistory(@PathParam("type") java.lang.String type) 
 - 
 
 -