
nl.tweeenveertig.openstack.headers.object.CopyFrom 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.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;
}
}