Package org.switchyard.component.bpm.config.model

Examples of org.switchyard.component.bpm.config.model.WorkItemHandlerModel


     * @param desc the descriptor
     */
    public V1WorkItemHandlersModel(Configuration config, Descriptor desc) {
        super(config, desc);
        for (Configuration workItemHandler_config : config.getChildren(WORK_ITEM_HANDLER)) {
            WorkItemHandlerModel workItemHandler = (WorkItemHandlerModel)readModel(workItemHandler_config);
            if (workItemHandler != null) {
                _workItemHandlers.add(workItemHandler);
            }
        }
        setModelChildrenOrder(WORK_ITEM_HANDLER);
View Full Code Here

TOP

Related Classes of org.switchyard.component.bpm.config.model.WorkItemHandlerModel

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.