Package org.jitterbit.integration.data.location

Examples of org.jitterbit.integration.data.location.LocatableFilter


    }

    private void buildDatabaseBranch(KongaTreeNode parent) {
        String name = Strings.get("ProjectItemTree.Databases");
        buildLocatableSubTree(parent, name, "ProjectItemTree.Help.Databases",
                        new LocatableFilter(DataLocationType.Database));
    }
View Full Code Here


        buildLocatableSubTree(parent, name, "ProjectItemTree.Help.FileLocations", new FileBasedLocationFilter());
    }

    private void buildLdapLocationBranch(KongaTreeNode parent) {
        String name = Strings.get("ProjectItemTree.LDAP");
        buildLocatableSubTree(parent, name, "ProjectItemTree.Help.LDAP", new LocatableFilter(DataLocationType.LDAP));
    }
View Full Code Here

        return all;
    }

    private List<Source> getSources(IntegrationProject project, DataLocationType locationType) {
        KList<Source> sources = project.getAllEntitiesOfClass(Source.class);
        return sources.findAll(new LocatableFilter(locationType)).sort(BY_NAME);
    }
View Full Code Here

        return sources.findAll(new LocatableFilter(locationType)).sort(BY_NAME);
    }

    private List<Target> getTargets(IntegrationProject project, DataLocationType locationType) {
        KList<Target> targets = project.getAllEntitiesOfClass(Target.class);
        return targets.findAll(new LocatableFilter(locationType)).sort(BY_NAME);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.location.LocatableFilter

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.