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

org.openstack4j.model.image.StoreType Maven / Gradle / Ivy

package org.openstack4j.model.image;

/**
 * Backing store types for glance images
 * 
 * @author Jeremy Unruh
 */
public enum StoreType {
	
  /**
   * File system store
   */
  FILE,
  /**
   * S3 store
   */
  S3,
  /**
   * OpenStack swift store
   */
  SWIFT;
  
  public String value() {
  	return name().toLowerCase();
  }
  
  @Override
  public String toString() {
  	return value();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy