|
@@ -4,6 +4,7 @@ import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
|
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -15,8 +16,7 @@ import java.util.Map;
|
|
|
public class QCCatalogue {
|
|
|
|
|
|
public QCCatalogue() {
|
|
|
- String className = this.getClass().getName();
|
|
|
- CatalogueUtil.qcCatalogueMap.put(className.substring(className.lastIndexOf(".") + 1), this);
|
|
|
+ CatalogueUtil.qcCatalogueMap.put(this.getClass().getSimpleName(), this);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -26,6 +26,6 @@ public class QCCatalogue {
|
|
|
* }
|
|
|
*/
|
|
|
public void execute(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
}
|