mirror of https://github.com/apache/jclouds.git
JCLOUDS-651: Add @Beta annotations to copy methods
This commit is contained in:
parent
4e37ffb6b6
commit
3f2e9f37fd
|
@ -239,6 +239,7 @@ public interface BlobStore {
|
||||||
* @return ETag of new blob
|
* @return ETag of new blob
|
||||||
* @throws ContainerNotFoundException if either container does not exist
|
* @throws ContainerNotFoundException if either container does not exist
|
||||||
*/
|
*/
|
||||||
|
@Beta
|
||||||
String copyBlob(String fromContainer, String fromName, String toContainer, String toName,
|
String copyBlob(String fromContainer, String fromName, String toContainer, String toName,
|
||||||
CopyOptions options);
|
CopyOptions options);
|
||||||
|
|
||||||
|
|
|
@ -19,9 +19,11 @@ package org.jclouds.blobstore.options;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import com.google.common.annotations.Beta;
|
||||||
import com.google.common.base.Optional;
|
import com.google.common.base.Optional;
|
||||||
import com.google.common.collect.ImmutableMap;
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
|
||||||
|
@Beta
|
||||||
public final class CopyOptions {
|
public final class CopyOptions {
|
||||||
public static final CopyOptions NONE = builder().build();
|
public static final CopyOptions NONE = builder().build();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue