Package org.jitterbit.integration.data.test

Examples of org.jitterbit.integration.data.test.EntityTestResult


     * {@link #actOn(EntityTestResult)} to provide the action specific functionality.
     *
     */
    @Override
    public final void actionPerformed(ActionEvent e) {
        EntityTestResult selected = getSelectedTestResult();
        if (selected != null) {
            actOn(selected);
        }
    }
View Full Code Here


    }

    public Set<IntegrationEntityId> getFailedConnections() {
        Set<IntegrationEntityId> ids = Sets.newHashSet();
        for (int n = 0; n < model.getRowCount(); ++n) {
            EntityTestResult r = model.getRowObjectAt(n);
            if (r.getOutcome() == Outcome.ERROR) {
                ids.add(r.getSubjectId());
            }
        }
        return ids;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.test.EntityTestResult

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.