summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Processor.java
blob: 7f29d23afb49c6ebd3e51838e1e8fc20116b456a (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.sdc.dcae.checker;


/**
 * Just in case you might want to do something with a template (set) once it was checked
 */
public interface Processor<T extends Processor<T>> {

  /* */
	public ProcessBuilder<T> process(Catalog theCatalog);
}