
nl.tweeenveertig.openstack.model.ObjectStoreEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joss Show documentation
Show all versions of joss Show documentation
Java Client library for OpenStack Storage (Swift)
package nl.tweeenveertig.openstack.model;
import java.util.Map;
public interface ObjectStoreEntity {
/**
* Sets the metadata headers
* @param metadata contains all metadata name/value pairs that must be set
*/
public void setMetadata(Map metadata);
/**
* Gets the metadata headers
* @return the metadata on the entity
*/
public Map getMetadata();
}