Skip to content
Merged
Show file tree
Hide file tree
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 @@ -28,7 +28,7 @@
public class BucketUri implements CommandLine.ITypeConverter<OzoneAddress> {

private static final String OZONE_BUCKET_URI_DESCRIPTION =
"URI of the volume/bucket.\n" + Shell.OZONE_URI_DESCRIPTION;
"URI of the bucket (format: volume/bucket).\n" + Shell.OZONE_URI_DESCRIPTION;

@CommandLine.Parameters(index = "0", arity = "1..1",
description = OZONE_BUCKET_URI_DESCRIPTION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class VolumeBucketUri
implements CommandLine.ITypeConverter<OzoneAddress> {

private static final String OZONE_VOLUME_BUCKET_URI_DESCRIPTION =
"URI of the volume or bucket.\n" + Shell.OZONE_URI_DESCRIPTION;
"URI of the volume (format: volume) or bucket (format: volume/bucket).\n" + Shell.OZONE_URI_DESCRIPTION;

@CommandLine.Parameters(index = "0", arity = "1..1",
description = OZONE_VOLUME_BUCKET_URI_DESCRIPTION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class KeyUri implements CommandLine.ITypeConverter<OzoneAddress> {

private static final String OZONE_KEY_URI_DESCRIPTION =
"URI of the volume/bucket/key.\n" + Shell.OZONE_URI_DESCRIPTION;
"URI of the key (format: volume/bucket/key).\n" + Shell.OZONE_URI_DESCRIPTION;

@CommandLine.Parameters(index = "0", arity = "1..1",
description = OZONE_KEY_URI_DESCRIPTION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class PrefixUri implements CommandLine.ITypeConverter<OzoneAddress> {

private static final String OZONE_PREFIX_URI_DESCRIPTION =
"URI of the volume/bucket/prefix.\n" + Shell.OZONE_URI_DESCRIPTION;
"URI of the prefix (format: volume/bucket/prefix).\n" + Shell.OZONE_URI_DESCRIPTION;

@CommandLine.Parameters(index = "0", arity = "1..1",
description = OZONE_PREFIX_URI_DESCRIPTION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class SnapshotUri implements CommandLine.ITypeConverter<OzoneAddress> {

private static final String OZONE_SNAPSHOT_URI_DESCRIPTION =
"URI of the volume/bucket/snapshot.\n" + Shell.OZONE_URI_DESCRIPTION;
"URI of the snapshot (format: volume/bucket/snapshot).\n" + Shell.OZONE_URI_DESCRIPTION;

@CommandLine.Parameters(index = "0", arity = "1..1",
description = OZONE_SNAPSHOT_URI_DESCRIPTION,
Expand Down