1.重构核心代码 2.实现了流程链路的显式关联

This commit is contained in:
bryan.zhang
2020-04-02 12:32:56 +08:00
parent ee50f95c6e
commit ed6f6d863a
74 changed files with 637 additions and 506 deletions

View File

@@ -8,7 +8,6 @@
*/
package com.yomahub.flowtest.components;
import com.yomahub.liteflow.core.NodeComponent;
import com.yomahub.liteflow.core.NodeCondComponent;
import org.springframework.stereotype.Component;
@@ -16,7 +15,7 @@ import org.springframework.stereotype.Component;
public class CondComponent extends NodeCondComponent {
@Override
protected Class<? extends NodeComponent> processCond() throws Exception {
return BComponent.class;
public String processCond() throws Exception {
return "b";
}
}