Package org.jitterbit.integration.data.location

Examples of org.jitterbit.integration.data.location.DataLocation$DummyId


            }
        }.runInBackgroundThread();
    }

    private void doExportImpl(Target target, List<? extends IntegrationEntity> availableDestinations) {
        DataLocation original = target.getLocation();
        helper.doExport(original, availableDestinations);
    }
View Full Code Here


    public PostDeployStructureProcessor(PostDeployLocationProcessor locationProcessor) {
        this.locationProcessor = locationProcessor;
    }

    public void process(DataStructure s) {
        DataLocation location = null;
        if (s instanceof DatabaseStructure) {
            location = ((DatabaseStructure) s).getUnprotectedDbLocation();
        } else if (s instanceof LdapStructure) {
            location = ((LdapStructure) s).getLdapLocation();
            location = ((LdapStructure) s).getUnprotectedLdapLocation();
View Full Code Here

    private static final class DbLookupFilter implements EntityFilter {

        @Override
        public boolean apply(IntegrationEntity entity) {
            if (entity instanceof Locatable) {
                DataLocation loc = ((Locatable) entity).getLocation();
                return loc instanceof DatabaseLocation;
            }
            return false;
        }
View Full Code Here

    }

    private void setLocatable(Locatable locatable) {
        this.locatable = locatable;
        topPanel.setLocatable(locatable);
        DataLocation loc = locatable.getLocation();
        if (loc != null) {
            DataLocationPanel panel = panelFactory.getPanel(loc);
            locationDisplayer.showDataLocationPanel(panel);
            fireTypeSelectionChange(loc.getDataLocationType());
        } else {
            fireTypeSelectionChange(null);
        }
    }
View Full Code Here

        typeComboBox.setSelectedLocationType(null);
        return typeComboBox;
    }

    public final void setLocatable(Locatable locatable) {
        DataLocation loc = locatable.getLocation();
        typeComboBox.setSelectedLocationType((loc == null) ? null : loc.getDataLocationType());
    }
View Full Code Here

        }
        return true;
    }

    private DataLocationType getCurrentType() {
        DataLocation loc = page.getLocatable().getLocation();
        return loc != null ? loc.getDataLocationType() : null;
    }
View Full Code Here

            return FtpTransferType.class;
        }

        @Override
        public FtpTransferType getValue(IntegrationEntity entity) {
            DataLocation location = ((Locatable) entity).getLocation();
            return ((FtpLocation) location).getTransferType();
        }
View Full Code Here

            return ((FtpLocation) location).getTransferType();
        }

        @Override
        public void setValue(IntegrationEntity entity, FtpTransferType value) {
            DataLocation location = ((Locatable) entity).getLocation();
            ((FtpLocation) location).setTransferType(value);
        }
View Full Code Here

            return FtpSecurityOption.class;
        }

        @Override
        public FtpSecurityOption getValue(IntegrationEntity entity) {
            DataLocation location = ((Locatable) entity).getLocation();
            return ((FtpLocation) location).getSecurityOption();
        }
View Full Code Here

            return ((FtpLocation) location).getSecurityOption();
        }

        @Override
        public void setValue(IntegrationEntity entity, FtpSecurityOption value) {
            DataLocation location = ((Locatable) entity).getLocation();
            ((FtpLocation) location).setSecurityOption(value);
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.location.DataLocation$DummyId

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.