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

io.cloudsoft.tosca.a4c.platform.ToscaPlatform Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy