Package org.jitterbit.integration.data.entity

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


        private final List<IntegrationEntity> contributors = Lists.newArrayList();

        public void collect(List<?> active) {
            for (Object o : active) {
                if (o instanceof Operation) {
                    Operation op = (Operation) o;
                    operations.add(op);
                    contributors.add(op);
                } else if (o instanceof Folder) {
                    collectOperations((Folder) o);
                }
View Full Code Here


        private void collectOperations(Folder folder) {
            if (folder.getItemType() == EntityType.Operation) {
                for (IntegrationEntity child : folder.getAllChildren()) {
                    if (child instanceof Operation) {
                        contributors.add(folder);
                        Operation op = (Operation) child;
                        contributors.add(op);
                        operations.add(op);
                    } else if (child instanceof Folder) {
                        collectOperations((Folder) child);
                    }
View Full Code Here

            }
        }

        private void collectScriptedLinks(PipelineActivity a, ScriptedLinkSource s) {
            for (ScriptedLink link : s.getScriptedLinks(lookup).keepAll(ScriptedLinkPredicates.OPERATION)) {
                Operation op = (Operation) link.getMainObject();
                if (!op.isDeleted()) {
                    ops.add(a, op);
                    links.add(link);
                }
            }
        }
View Full Code Here

TOP

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

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.