mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
22 lines
496 B
Java
22 lines
496 B
Java
/**
|
|
* <p>Title: litis</p>
|
|
* <p>Description: redis的全方位开发运维平台</p>
|
|
* <p>Copyright: Copyright (c) 2017</p>
|
|
* @author Bryan.Zhang
|
|
* @email 47483522@qq.com
|
|
* @Date 2017-11-28
|
|
*/
|
|
package com.yomahub.flowtest.components;
|
|
|
|
import com.yomahub.liteflow.core.NodeCondComponent;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component("cond")
|
|
public class CondComponent extends NodeCondComponent {
|
|
|
|
@Override
|
|
public String processCond() throws Exception {
|
|
return "b";
|
|
}
|
|
}
|