Package org.jitterbit.integration.data.entity

Examples of org.jitterbit.integration.data.entity.IntegrationEntityLookup


        private void setPreselectedSource(TransformationWizard wizard) {
            Transformation tx = wizard.getTransformation();
            SourceId sourceId = tx.getSourceId();
            if (sourceId != null) {
                IntegrationEntityLookup itemLookup = wizard.getItemLookup();
                Source src = itemLookup.getEntity(sourceId, Source.class);
                if (src != null) {
                    DataLocation location = src.getLocation();
                    if (location instanceof LdapLocation) {
                        pages.setSelectedLocation((LdapLocation) location);
                    }
View Full Code Here


        private void setPreselectedTarget(TransformationWizard wizard) {
            Transformation tx = wizard.getTransformation();
            TargetId targetId = tx.getTargetId();
            if (targetId != null) {
                IntegrationEntityLookup itemLookup = wizard.getItemLookup();
                Target tgt = itemLookup.getEntity(targetId, Target.class);
                if (tgt != null) {
                    DataLocation location = tgt.getLocation();
                    if (location instanceof LdapLocation) {
                        pages.setSelectedLocation((LdapLocation) location);
                    }
View Full Code Here

    private class TestInProgressStrategyImpl implements TestInProgressStrategy {

        @Override
        public void handleNewTestRequest(DebugService service, String testProviderId, IntegrationEntityId debugeeId,
                        DebugController controller, SessionRequester requester) throws DebuggingException {
            IntegrationEntityLookup itemLookup = view.getProject().getItemLookup();
            TestInProgressStrategy worker = new InteractiveTestInProgressStrategy(itemLookup);
            worker.handleNewTestRequest(service, testProviderId, debugeeId, controller, requester);
        }
View Full Code Here

        this.item = item;
        lookup = getProjectLookup();
    }

    private IntegrationEntityLookup getProjectLookup() {
        IntegrationEntityLookup lookup = ProjectUtils.getLookup((IntegrationEntity) item);
        if (lookup == null) {
            lookup = IntegrationEntityLookup.NULL;
        }
        return lookup;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.IntegrationEntityLookup

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.