001package org.hl7.fhir.r5.utils.validation;
002
003public class BundleValidationRule {
004  private String rule;
005  private String profile;
006  private boolean checked;
007
008  public BundleValidationRule(String rule, String profile) {
009    super();
010    this.rule = rule;
011    this.profile = profile;
012  }
013
014  public String getRule() {
015    return rule;
016  }
017
018  public String getProfile() {
019    return profile;
020  }
021
022  public boolean isChecked() {
023    return checked;
024  }
025
026  public void setChecked(boolean checked) {
027    this.checked = checked;
028  }
029}