Package ru.runa.af.service.impl.interfaces

Examples of ru.runa.af.service.impl.interfaces.ExecutorService


        return result;
    }

    @Override
    protected void loadRemoteData() throws Exception {
        ExecutorService executorService = getService(ExecutorServiceHome.JNDI_NAME, ExecutorServiceHome.class);
        List<Relation> loaded = executorService.getRelations(subject, AFProfileStrategy.RELATION_GROUPS_DEFAULT_BATCH_PRESENTATOIN_FACTORY.getDefaultBatchPresentation());
        for (Relation relation : loaded) {
            relations.add(relation.getName());
        }
    }
View Full Code Here


        }
    }

    @Override
    protected void loadRemoteData() throws Exception {
        ExecutorService executorService = getService(ExecutorServiceHome.JNDI_NAME, ExecutorServiceHome.class);
        Executor[] loaded = executorService.getAll(subject, AFProfileStrategy.EXECUTOR_DEAFAULT_BATCH_PRESENTATOIN_FACTORY.getDefaultBatchPresentation());
        for (Executor executor : loaded) {
            executors.put(executor.getName(), executor instanceof Group);
        }
    }
View Full Code Here

TOP

Related Classes of ru.runa.af.service.impl.interfaces.ExecutorService

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.