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

flux.HttpFileTransferActionFactory Maven / Gradle / Ivy

The newest version!
package flux;

import flux.dev.AdapterFactory;
import fluximpl.FlowChartImpl;
import fluximpl.HttpFileTransferActionImpl;

/**
 * Factory for creating HttpFileTransferAction.
 *
 * @author [email protected]
 */
public class HttpFileTransferActionFactory implements AdapterFactory {

  private FlowChartImpl flowChart;

  public void init(FlowChartImpl flowChart) {
    this.flowChart = flowChart;
  } // init

  public HttpFileTransferAction makeHttpFileTransferAction(String name) {
    return new HttpFileTransferActionImpl(flowChart, name);
  } // makeHttpFileTransferAction()

} // class HttpFileTransferActionFactory




© 2015 - 2025 Weber Informatics LLC | Privacy Policy