Package ca.uhn.fhir.rest.api.server
Interface IPreResourceAccessDetails
-
- All Known Implementing Classes:
SimplePreResourceAccessDetails
public interface IPreResourceAccessDetails
This object is an abstraction for a server response that is going to return one or more resources to the user. This can be used by interceptors to make decisions about whether a resource should be visible or not to the user making the request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.hl7.fhir.instance.model.api.IBaseResourcegetResource(int theIndex)voidsetDontReturnResourceAtIndex(int theIndex)intsize()
-
-
-
Method Detail
-
size
int size()
-
getResource
org.hl7.fhir.instance.model.api.IBaseResource getResource(int theIndex)
-
setDontReturnResourceAtIndex
void setDontReturnResourceAtIndex(int theIndex)
-
-