All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.runtime.config.internal.factories.DefaultFlowFactoryBean Maven / Gradle / Ivy

/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.runtime.config.internal.factories;

import static java.util.Collections.emptyList;

import org.mule.runtime.api.component.AbstractComponent;
import org.mule.runtime.core.api.MuleContext;
import org.mule.runtime.core.api.construct.Flow;
import org.mule.runtime.core.api.construct.Flow.Builder;
import org.mule.runtime.core.api.context.MuleContextAware;
import org.mule.runtime.core.api.exception.FlowExceptionHandler;
import org.mule.runtime.core.api.processor.Processor;
import org.mule.runtime.core.api.processor.strategy.ProcessingStrategyFactory;
import org.mule.runtime.core.api.source.MessageSource;
import org.mule.runtime.core.internal.construct.DefaultFlowBuilder.DefaultFlow;

import java.util.List;

import org.springframework.beans.factory.FactoryBean;

/**
 * Generates an immutable {@link Flow} with the provided config.
 * 
 * @since 4.0
 */
public class DefaultFlowFactoryBean extends AbstractComponent
    implements FactoryBean, MuleContextAware {

  private String name;
  private MuleContext muleContext;
  private String initialState;
  private MessageSource messageSource;
  private List messageProcessors;
  private FlowExceptionHandler exceptionListener;
  private ProcessingStrategyFactory processingStrategyFactory;
  private Integer maxConcurrency;

  @Override
  public Flow getObject() throws Exception {
    Builder flowBuilder = Flow.builder(name, muleContext)
        .messagingExceptionHandler(exceptionListener)
        .initialState(initialState);

    flowBuilder.processors(messageProcessors != null
        ? messageProcessors
        : emptyList());

    if (messageSource != null) {
      flowBuilder.source(messageSource);
    }
    if (processingStrategyFactory != null) {
      flowBuilder.processingStrategyFactory(processingStrategyFactory);
    }
    if (maxConcurrency != null) {
      flowBuilder.maxConcurrency(maxConcurrency.intValue());
    }

    final DefaultFlow build = (DefaultFlow) flowBuilder.build();

    build.setAnnotations(getAnnotations());
    return build;
  }

  @Override
  public Class getObjectType() {
    return Flow.class;
  }

  @Override
  public boolean isSingleton() {
    return true;
  }


  public String getName() {
    return name;
  }


  public void setName(String name) {
    this.name = name;
  }


  public MuleContext getMuleContext() {
    return muleContext;
  }


  @Override
  public void setMuleContext(MuleContext muleContext) {
    this.muleContext = muleContext;
  }


  public String getInitialState() {
    return initialState;
  }


  public void setInitialState(String initialState) {
    this.initialState = initialState;
  }


  public MessageSource getMessageSource() {
    return messageSource;
  }


  public void setMessageSource(MessageSource messageSource) {
    this.messageSource = messageSource;
  }


  public List getMessageProcessors() {
    return messageProcessors;
  }


  public void setMessageProcessors(List messageProcessors) {
    this.messageProcessors = messageProcessors;
  }


  public FlowExceptionHandler getExceptionListener() {
    return exceptionListener;
  }


  public void setExceptionListener(FlowExceptionHandler exceptionListener) {
    this.exceptionListener = exceptionListener;
  }


  public ProcessingStrategyFactory getProcessingStrategyFactory() {
    return processingStrategyFactory;
  }


  public void setProcessingStrategyFactory(ProcessingStrategyFactory processingStrategyFactory) {
    this.processingStrategyFactory = processingStrategyFactory;
  }

  public void setMaxConcurrency(Integer maxConcurrency) {
    this.maxConcurrency = maxConcurrency;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy