Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void execute(OzoneClient client, OzoneAddress address)
*/
public static class LinkBucket {
private String volumeName;
private String bucketName;
private String name;
private String sourceVolume;
private String sourceBucket;
private Instant creationTime;
Expand All @@ -63,7 +63,7 @@ public static class LinkBucket {

LinkBucket(OzoneBucket ozoneBucket) {
this.volumeName = ozoneBucket.getVolumeName();
this.bucketName = ozoneBucket.getName();
this.name = ozoneBucket.getName();
this.sourceVolume = ozoneBucket.getSourceVolume();
this.sourceBucket = ozoneBucket.getSourceBucket();
this.creationTime = ozoneBucket.getCreationTime();
Expand All @@ -76,8 +76,8 @@ public String getVolumeName() {
return volumeName;
}

public String getBucketName() {
return bucketName;
public String getName() {
return name;
}

public String getSourceVolume() {
Expand Down
Loading