Interface ProfileConstraintProvider
-
- All Superinterfaces:
ConstraintProvider
- All Known Implementing Classes:
AbstractProfileConstraintProvider
public interface ProfileConstraintProvider extends ConstraintProvider
An interface that extendsConstraintProvider
with a method that determines whether this constraint provider applies to a specific profile
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
appliesTo(java.lang.String url, java.lang.String version)
Indicates whether this constraint provider applies to a profile with the given url and version-
Methods inherited from interface org.linuxforhealth.fhir.model.constraint.spi.ConstraintProvider
getConstraints, getRemovalPredicates
-
-
-
-
Method Detail
-
appliesTo
boolean appliesTo(java.lang.String url, java.lang.String version)
Indicates whether this constraint provider applies to a profile with the given url and version- Parameters:
url
- the urlversion
- the version- Returns:
- true if this constraint provider applies to a profile with the given url and version, false otherwise
-
-