io.cloudsoft.tosca.a4c.platform.ToscaPlatform 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.platform;
import java.io.Closeable;
import java.nio.file.Path;
import io.cloudsoft.tosca.a4c.brooklyn.ToscaApplication;
public interface ToscaPlatform {
void loadTypesFromUrl(String url) throws Exception;
// TODO: Uses of this should be turned into proper methods on this class.
@Deprecated
T getBean(Class type);
ToscaApplication parse(String plan);
ToscaApplication parse(Path path);
ToscaApplication getToscaApplication(String id);
}