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

com.fluxtion.compiler.RootNodeConfig Maven / Gradle / Ivy

There is a newer version: 9.3.47
Show newest version
package com.fluxtion.compiler;

import lombok.Value;

import java.util.List;
import java.util.Map;

/**
 * Configuration for a root node to be injected into the graph
 */
@Value
public class RootNodeConfig {
    String name;
    Class rootClass;
    Map config;
    List nodes;
}