d73b197ac7089149cc3d5ac6eb3fe81362ece250
[sdc.git] /
1 package org.openecomp.sdc.asdctool.impl.validator.tasks;
2
3 import org.openecomp.sdc.asdctool.impl.validator.utils.VertexResult;
4 import org.openecomp.sdc.be.dao.jsongraph.GraphVertex;
5
6 /**
7  * Created by chaya on 7/5/2017.
8  */
9 public interface TopologyTemplateValidationTask {
10     VertexResult validate(GraphVertex vertex);
11     String getTaskName();
12     String getTaskResultStatus();
13     void setTaskResultStatus(String status);
14 }