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

org.openstack4j.model.heat.Template Maven / Gradle / Ivy

package org.openstack4j.model.heat;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.heat.builder.TemplateBuilder;

/**
 * This interface describes a template object. 
 * @author Matthias Reisser
 *
 */
public interface Template extends ModelEntity, Buildable {
	
	/**
	 * Returns the JSON-representation of the template
	 * 
	 * @return the JSON formatted template
	 */
	String getTemplateJson();
	
	/**
	 * The URL of the template to instantiate. This value is ignored if the template is supplied inline.
	 * 
	 * @return the template URL
	 */
	String getTemplateURL();
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy