Package org.jitterbit.integration.debug.serverapi

Examples of org.jitterbit.integration.debug.serverapi.ServerTestCallback


    }

    @Override
    public void testOperation(Operation op) {
        callback.beforeTestStarts();
        ServerTestCallback resultHandler = new TestOperationHandler(op, getTransformation(), callback);
        Transformation tf = page.getObject();
        TestOperationJob p = new TestOperationJob(op, tf, page.getView().getPlatformDebugService(), resultHandler);
        p.setUseProgressDialog(0);
        p.submit(page.getWaitService(), 0);
    }
View Full Code Here


        Runnable job = new Runnable() {

            @Override
            public void run() {
                removeCurrentTargetData();
                ServerTestCallback cb = new TestTransformationHandler();
                DataStructure inputStructure = getTransformation().getInputStructure();
                if (inputStructure.getStructureType().isSourceDataRequired()) {
                    SourceDataIdentifier sourceDataToken = loadSourceService.getSourceDataToken();
                    submitTestTransformationJob(sourceDataToken, cb);
                } else {
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.debug.serverapi.ServerTestCallback

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.