ludc
2024-08-02 c92be9df89d2c72d8d9fc4d0c7c54f53e1897521
1
2
3
4
5
6
7
8
9
10
11
12
package com.vci.client.workflow.user;
 
import java.util.List;
import java.util.Map;
 
import com.vci.client.common.objects.UserEntityObject;
 
public interface WorkflowUserInterface {
    public List<String[]> getUserByExp(String exp, String executionId, UserEntityObject userObj);
    public String getAttrbuteByCondition(Map<String,String> items, String attr);
    
}