Interface IAuthRuleBuilderAppliesTo<T>
-
- All Known Subinterfaces:
IAuthRuleBuilderRuleConditional,IAuthRuleBuilderRuleOp,IAuthRuleBuilderRuleOpDelete
public interface IAuthRuleBuilderAppliesTo<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TallResources()Rule applies to all resourcesTresourcesOfType(Class<? extends org.hl7.fhir.instance.model.api.IBaseResource> theType)Rule applies to resources of the given typeTresourcesOfType(String theType)Rule applies to resources of the given type
-
-
-
Method Detail
-
allResources
T allResources()
Rule applies to all resources
-
resourcesOfType
T resourcesOfType(Class<? extends org.hl7.fhir.instance.model.api.IBaseResource> theType)
Rule applies to resources of the given type
-
resourcesOfType
T resourcesOfType(String theType)
Rule applies to resources of the given type- Parameters:
theType- E.g. "Patient"
-
-