summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/IChecker.java
blob: be775004029a4a4f319b4c41ec91e76df0795a9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.onap.sdc.dcae.checker;

import kwalify.Rule;
import kwalify.Validator;

import java.util.Map;

public interface IChecker {
    void check_template_artifacts_definition(
            Map<String, Object> theDefinition,
            Checker.CheckContext theContext);

    /* */
    void check_inputs(Map<String, Map> theInputs,
                      Checker.CheckContext theContext);

    void validationHook(String theTiming,
                        Object theTarget,
                        Rule theRule,
                        Validator.ValidationContext theContext);
}