DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_be / src / main / java / org / onap / sdc / dcae / rule / editor / validators / IRuleElementValidator.java
1 package org.onap.sdc.dcae.rule.editor.validators;
2
3 import org.onap.sdc.dcae.errormng.ResponseFormat;
4
5 import java.util.List;
6
7 public interface IRuleElementValidator <T> {
8         boolean validate(T element, List<ResponseFormat> errors);
9 }