|
@@ -15,6 +15,8 @@ import java.util.Map;
|
|
*/
|
|
*/
|
|
public class QCCatalogue {
|
|
public class QCCatalogue {
|
|
|
|
|
|
|
|
+ protected Map<String, String> resultDetail;
|
|
|
|
+
|
|
public QCCatalogue() {
|
|
public QCCatalogue() {
|
|
CatalogueUtil.qcCatalogueMap.put(this.getClass().getSimpleName(), this);
|
|
CatalogueUtil.qcCatalogueMap.put(this.getClass().getSimpleName(), this);
|
|
}
|
|
}
|
|
@@ -26,6 +28,13 @@ public class QCCatalogue {
|
|
* }
|
|
* }
|
|
*/
|
|
*/
|
|
public void execute(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
public void execute(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
|
+ resultDetail = new HashMap<>();
|
|
|
|
+ resultDetail.put("info", "");
|
|
|
|
+ start(inputInfo, outputInfo);
|
|
|
|
+ outputInfo.getResult().put(this.getClass().getSimpleName(), resultDetail);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ protected void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|