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

nl.tweeenveertig.openstack.headers.Metadata Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
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;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy