1 package ca.uhn.hl7v2.validation;
2
3 import ca.uhn.hl7v2.model.Composite;
4
5 /**
6 * A validation rule that applies to a fully populated composite type. Composite rules may be called
7 * (depending on runtime configuration) just after an inbound message is parsed, or just before an
8 * outbound message is encoded.
9 *
10 * @author Christian Ohr
11 */
12 public interface CompositeTypeRule extends Rule<Composite> {
13
14 }