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

nl.tweeenveertig.openstack.headers.object.CopyFrom Maven / Gradle / Ivy

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

import nl.tweeenveertig.openstack.headers.SimpleHeader;

/**
 * Determines the source object in a copy action
 */
public class CopyFrom extends SimpleHeader {

    public static final String X_COPY_FROM      = "X-Copy-From";

    public CopyFrom(String copyFrom) {
        super(copyFrom);
    }

    @Override
    public String getHeaderName() {
        return X_COPY_FROM;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy