This commit is contained in:
Tadgh 2021-09-15 01:20:46 -04:00
parent 8f0e8b9e51
commit 9070aa3571
2 changed files with 1 additions and 2 deletions

View File

@ -67,7 +67,6 @@ public interface IAuthRuleBuilder {
* and could be shown to the client, but has no semantic meaning within * and could be shown to the client, but has no semantic meaning within
* HAPI FHIR. * HAPI FHIR.
*/ */
IAuthRuleBuilderRuleOpClassifierFinished allowAll(String theRuleName);
/** /**
* Build the rule list * Build the rule list

View File

@ -53,7 +53,7 @@ public interface IAuthRuleBuilderRuleOp extends IAuthRuleBuilderAppliesTo<IAuthR
* <li><b><code>Patient/123</code></b> - Any Patient resource with the ID "123" will be matched</li> * <li><b><code>Patient/123</code></b> - Any Patient resource with the ID "123" will be matched</li>
* <li><b><code>123</code></b> - Any resource of any type with the ID "123" will be matched</li> * <li><b><code>123</code></b> - Any resource of any type with the ID "123" will be matched</li>
* </ul> * </ul>
* >*
* @param theId The ID of the resource to apply (e.g. <code>Patient/123</code>) * @param theId The ID of the resource to apply (e.g. <code>Patient/123</code>)
* @throws IllegalArgumentException If theId does not contain an ID with at least an ID part * @throws IllegalArgumentException If theId does not contain an ID with at least an ID part
* @throws NullPointerException If theId is null * @throws NullPointerException If theId is null