
nl.tweeenveertig.openstack.headers.Metadata 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.headers;
import nl.tweeenveertig.openstack.headers.SimpleHeader;
public abstract class Metadata extends SimpleHeader {
private String name;
public Metadata(String name, String value) {
super(value);
this.name = name;
}
public String getName() {
return this.name;
}
}