Package org.enhydra.shark

Source Code of org.enhydra.shark.CustomWfActivityWrapper

package org.enhydra.shark;

import java.util.List;
import org.enhydra.shark.api.client.wfmc.wapi.WMSessionHandle;
import org.enhydra.shark.api.internal.working.WfActivityInternal;

public class CustomWfActivityWrapper {
    public static List<String> getAssignmentResourceIds(WMSessionHandle shandle,
                               String mgrName,
                               String processId,
                               String id) throws Exception{
        WfActivityWrapper wrapper = new WfActivityWrapper(shandle, mgrName, processId, id);
        WfActivityInternal internal = wrapper.getActivityImpl(processId, id, SharkUtilities.READ_ONLY_MODE);
        return internal.getAssignmentResourceIds(shandle);
    }
}
TOP

Related Classes of org.enhydra.shark.CustomWfActivityWrapper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.