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

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

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

import org.openstack4j.model.ModelEntity;

/**
 * Represents a system tenant who has access to another tenants Image
 * 
 * @author Jeremy Unruh
 */
public interface ImageMember extends ModelEntity {

	/**
	 * The Member/Tenant
	 *
	 * @return the member identifier
	 */
	String getMemberId();
	
	/**
	 * If true the current member can share the image with another tenant
	 *
	 * @return true, if the current member/tenant can share the image
	 */
	boolean isCanShare();
	
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy