smengcl commented on a change in pull request #2857:
URL: https://github.com/apache/ozone/pull/2857#discussion_r755623636



##########
File path: 
hadoop-ozone/common/src/main/java/org/apache/hadoop/ozone/om/helpers/OmTenantArgs.java
##########
@@ -22,14 +22,26 @@
  * This class is used for storing Ozone tenant arguments.
  */
 public class OmTenantArgs {
-  /* Tenant name */
+  /**
+   * Tenant name.
+   */
   private final String tenantId;
+  /**
+   * Volume name to be created for this tenant.
+   * Default volume name would be the same as tenant name if unspecified.

Review comment:
       You mean adding a new constructor like this one?:
   
   ```java
     public OmTenantArgs(String tenantId) {
       this.tenantId = tenantId;
       this.volumeName = tenantId;
     }
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to