📄 actorassignmenthandler.java
字号:
package org.jbpm.delegation.assignment;
import org.jbpm.*;
import org.jbpm.delegation.*;
public class ActorAssignmentHandler implements AssignmentHandler, Configurable {
private String actorId = null;
public String selectActor(AssignmentContext assignerContext) {
return actorId;
}
public void configure(String configuration) {
if ( configuration == null ) {
throw new ConfigurationException( "configuration of ActorAssignmentHandler is null instead of an actorId" );
}
actorId = configuration.trim();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -