Package org.jitterbit.integration.data.function

Examples of org.jitterbit.integration.data.function.UndefinedFunction


    public static List<Function> getFunctions(List<IntegrationId> functionIds, IntegrationEntityLookup dataStore) {
        List<Function> fcns = Lists.newArrayList();
        for (IntegrationId id : functionIds) {
            if (TransformationId.UNDEFINED_ID.equals(id) || WebServiceCallId.UNDEFINED_ID.equals(id)) {
                fcns.add(new UndefinedFunction(id));
            } else if (id instanceof IntegrationEntityId) {
                fcns.add((Function) dataStore.getEntity((IntegrationEntityId) id));
            }
        }
        return fcns;
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.function.UndefinedFunction

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.