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

org.openstack4j.model.sahara.ConfigInfo Maven / Gradle / Ivy

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

import java.util.List;

import org.openstack4j.model.ModelEntity;

/**
 * A Sahara Config Information
 * 
 * @author [email protected]
 */
public interface ConfigInfo extends ModelEntity {

	/**
	 * @return the default value
	 */
	String getDefaultValue();

	/**
	 * @return the name
	 */
	String getName();

	/**
	 * @return the priority
	 */
	Integer getPriority();

	/**
	 * @return the type (string, int, bool, enum)
	 */
	String getType();

	/**
	 * @return the applicable target
	 */
	String getApplicableTarget();

	/**
	 * @return true if this config is optional
	 */
	Boolean isOptional();

	/**
	 * @return the scope
	 */
	String getScope();

	/**
	 * @return the description
	 */
	String getDescription();

	/**
	 * @return the list of valid config values (if type is enum)
	 */
	List getConfigValues();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy