Package de.danet.an.workflow.api.Participant

Examples of de.danet.an.workflow.api.Participant.ParticipantType


        if (participant == null) {
            return new ArrayList ();
        }

        Object resSel = null;
        ParticipantType type = participant.getParticipantType();
        Collection assigned = new ArrayList ();
        if (type.isResourceSet()) {
            resSel = "G:" + participant.getName();
        } else if (type.isRole()) {
            resSel = "R:" + participant.getName();
        } else if (type.isHuman()) {
            String crit = (String)participant.getResourceSelection();
            if (crit != null && crit.startsWith ("!:currentUser")
                && principal != null) {
                try {
                    WfResource res = asResource (principal);
View Full Code Here

TOP

Related Classes of de.danet.an.workflow.api.Participant.ParticipantType

Copyright © 2018 www.massapicom. 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.