Package org.jitterbit.integration.client.ui.operation.runner

Examples of org.jitterbit.integration.client.ui.operation.runner.OperationClientStartChecker


            super(scriptFactory, EntityType.Script, Script.class);
        }

        @Override
        public boolean isSupported(Operation op) {
            OperationClientStartChecker checker = new OperationClientStartChecker(OperationExecutionMode.RUN);
            RunnableStatus status = checker.checkRunnableStatus(op);
            return status.isRunnable();
        }
View Full Code Here


        private void noOperationsAvailable() {
            Alert.error("There are no operations using this transformation.", "Error");
        }

        private boolean isOperationTestable(Operation op) {
            OperationClientStartChecker checker = new OperationClientStartChecker(OperationExecutionMode.TEST);
            RunnableStatus status = checker.checkRunnableStatus(op);
            boolean runnable = status.isRunnable();
            if (!runnable) {
                showNotTestableMessage(status);
            }
            return runnable;
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.operation.runner.OperationClientStartChecker

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.