Package org.jitterbit.integration.client.plugin.pipeline

Examples of org.jitterbit.integration.client.plugin.pipeline.PipelinePluginSpecification$DefaultImpl


    protected boolean isEnabledFor(IntegrationEntity object) {
        return isSupportedEntity(object);
    }

    private boolean isSupportedEntity(IntegrationEntity e) {
        PipelinePluginSpecification spec = PipelinePluginSpecification.getLatest();
        return spec.isEntitySupported(e);
    }
View Full Code Here


            }
            return false;
        }

        private boolean isEntitySupported(IntegrationEntity entity) {
            PipelinePluginSpecification spec = PipelinePluginSpecification.getLatest();
            return spec.getSupportedEntityTypes().contains(entity.getEntityType());
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.plugin.pipeline.PipelinePluginSpecification$DefaultImpl

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.