Package org.jitterbit.integration.data.entity.script

Examples of org.jitterbit.integration.data.entity.script.ScriptedLink


        Collection<? extends IntegrationEntity> objects =
            IdToObjectUtils.getEntitiesFromIds(ids, lookup, IntegrationEntity.class);
        scriptedLinks = Lists.newArrayList();
        for (IntegrationEntity e : objects) {
            if (e != null) {
                scriptedLinks.add(new ScriptedLink(e, this));
            } else {
                System.err.println("Null entity encountered in script '" + getName() + "'");
            }
        }
    }
View Full Code Here


    public List<ScriptedLink> getLinks() {
        List<ScriptedLink> links = Lists.newArrayList();
        for (IntegrationEntityId id : GrammarUtils.getAllIdsFromTransformation(transformation)) {
            IntegrationEntity entity = lookup.getEntity(id);
            if (entity != null) {
                links.add(new ScriptedLink(entity, transformation));
            } else {
                LinkUtils.logMissingLink(transformation, id.getEntityType(), id);
            }
        }
        return links;
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.script.ScriptedLink

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.