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

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

There is a newer version: 0.7.0
Show newest version
package nl.tweeenveertig.openstack.headers;

public abstract class SimpleHeader extends Header {

    private String value;

    public SimpleHeader(String value) {
        this.value = value;
    }

    @Override
    public String getHeaderValue() {
        return this.value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy