com.bazaarvoice.maven.plugin.s3repo.rebuild.RemoteSnapshotRename Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3repo-maven-plugin Show documentation
Show all versions of s3repo-maven-plugin Show documentation
Create or update an S3 YUM repository.
package com.bazaarvoice.maven.plugin.s3repo.rebuild;
final class RemoteSnapshotRename {
static RemoteSnapshotRename withNewBucketKey(SnapshotDescription source, String newBucketKey) {
return new RemoteSnapshotRename(source, newBucketKey);
}
private final SnapshotDescription source;
private final String newBucketKey;
private RemoteSnapshotRename(SnapshotDescription source, String newBucketKey) {
this.source = source;
this.newBucketKey = newBucketKey;
}
public SnapshotDescription getSource() {
return source;
}
public String getNewBucketKey() {
return newBucketKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy