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

org.openstack4j.model.common.Extension Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.common;

import java.net.URI;
import java.util.Date;
import java.util.List;

import org.openstack4j.model.ModelEntity;

/**
 * Represents an Extension which adds additional functionality to the OpenStack API
 * 
 * @author Jeremy Unruh
 */
public interface Extension extends ModelEntity {

	/**
	 * @return the name of the extension
	 */
	String getName();
	
	/**
	 * @return the namespace of this extension
	 */
	URI getNamespace();
	
	/**
	 * @return the alias which is used within RestFul and other operational calls
	 */
	String getAlias();
	
	/**
	 * @return when the extension was last updated
	 */
	Date getUpdated();
	
	/**
	 * @return the description of this extension
	 */
	String getDescription();
	
	/**
	 * @return the additional information and documentation based links for this extension
	 */
	List getLinks();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy