com.fluxtion.builder.node.DeclarativeNodeConiguration Maven / Gradle / Ivy
/*
* Copyright (C) 2018 V12 Technology Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package com.fluxtion.builder.node;
import java.util.Collections;
import java.util.HashSet;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
/**
* Provides data driven SEP generation.
*
* Doc to be completed
* @author Greg Higgins
*/
public final class DeclarativeNodeConiguration {
/**
* The root nodes to create and the variable names they should be mapped to.
*
*/
public final Map rootNodeMappings;
/**
* The set of factory classes used for node creation, each factory must
* have default constructor so the SEP can instantiate the factory.
* The classes in factoryClassSet are instantiated and merged into the
* factorySet instances.
*/
public final Set> factoryClassSet;
/**
* The factory instances registered that can create new new instances of
* nodes.
*/
public final Set> factorySet;
// /**
// * Map representing the name of the actual proxy class generated by a
// * NodeGenerator. The real class name is only known after the proxy has been
// * generated.
// *
// */
// public final Map © 2015 - 2025 Weber Informatics LLC | Privacy Policy