io.cloudsoft.tosca.a4c.brooklyn.spec.EntitySpecModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-tosca-transformer Show documentation
Show all versions of brooklyn-tosca-transformer Show documentation
TOSCA support for Brooklyn plans leveraging Alien4Cloud
The newest version!
package io.cloudsoft.tosca.a4c.brooklyn.spec;
import org.apache.brooklyn.api.entity.EntitySpec;
import io.cloudsoft.tosca.a4c.brooklyn.ToscaApplication;
/**
* A SpecModifier applies a set of changes to an entity spec with reference to a node
* template and a topology.
*/
public interface EntitySpecModifier {
void apply(EntitySpec> entitySpec, String nodeId, ToscaApplication toscaApplication);
}