@@ -32,9 +32,9 @@ public class BatchClient {
3232 private Collection <BatchClientBehavior > customBehaviors ;
3333
3434 /**
35- * Gets the internal proxy layer to be used for this client instance
35+ * Gets the protocol layer service client that issues requests to the Azure Batch service.
3636 *
37- * @return The proxy layer client
37+ * @return The protocol layer client.
3838 */
3939 public BatchServiceClient protocolLayer () {
4040 return this .protocolLayer ;
@@ -58,108 +58,108 @@ private BatchClient(BatchSharedKeyCredentials credentials) {
5858 /**
5959 * Creates an instance of {@link BatchClient} associated with the specified credentials.
6060 *
61- * @param credentials The provided credential
62- * @return The new instance of BatchClient
61+ * @param credentials A {@link BatchSharedKeyCredentials} object specifying the Batch account credentials.
62+ * @return The new {@link BatchClient} instance.
6363 */
6464 public static BatchClient open (BatchSharedKeyCredentials credentials ) {
6565 return new BatchClient (credentials );
6666 }
6767
6868 /**
69- * Gets an {@link CertificateOperations} for performing certificate related operations on the associated account.
69+ * Gets a {@link CertificateOperations} object for performing certificate- related operations on the associated account.
7070 *
71- * @return An instance of CertificateOperations class
71+ * @return An instance of the {@link CertificateOperations} class.
7272 */
7373 public CertificateOperations certificateOperations () {
7474 return certificateOperations ;
7575 }
7676
7777 /**
78- * Gets an {@link JobOperations} for performing job related operations on the associated account.
78+ * Gets a {@link JobOperations} object for performing job- related operations on the associated account.
7979 *
80- * @return An instance of JobOperations class
80+ * @return An instance of the {@link JobOperations} class.
8181 */
8282 public JobOperations jobOperations () {
8383 return jobOperations ;
8484 }
8585
8686 /**
87- * Gets an {@link TaskOperations} for performing task related operations on the associated account.
87+ * Gets a {@link TaskOperations} object for performing task- related operations on the associated account.
8888 *
89- * @return An instance of TaskOperations class
89+ * @return An instance of the {@link TaskOperations} class.
9090 */
9191 public TaskOperations taskOperations () {
9292 return taskOperations ;
9393 }
9494
9595 /**
96- * Gets an {@link JobScheduleOperations} for performing job schedule related operations on the associated account.
96+ * Gets a {@link JobScheduleOperations} object for performing job schedule- related operations on the associated account.
9797 *
98- * @return An instance of JobScheduleOperations class
98+ * @return An instance of the {@link JobScheduleOperations} class.
9999 */
100100 public JobScheduleOperations jobScheduleOperations () {
101101 return jobScheduleOperations ;
102102 }
103103
104104 /**
105- * Gets an {@link FileOperations} for performing file-related operations on the associated account.
105+ * Gets a {@link FileOperations} object for performing file-related operations on the associated account.
106106 *
107- * @return An instance of FileOperations class
107+ * @return An instance of the {@link FileOperations} class.
108108 */
109109 public FileOperations fileOperations () {
110110 return fileOperations ;
111111 }
112112
113113 /**
114- * Gets an {@link PoolOperations} for performing pool related operations on the associated account.
114+ * Gets a {@link PoolOperations} object for performing pool- related operations on the associated account.
115115 *
116- * @return An instance of PoolOperations class
116+ * @return An instance of the {@link PoolOperations} class.
117117 */
118118 public PoolOperations poolOperations () {
119119 return poolOperations ;
120120 }
121121
122122 /**
123- * Gets an {@link ComputeNodeOperations} for performing compute node related operations on the associated account.
123+ * Gets a {@link ComputeNodeOperations} object for performing compute node- related operations on the associated account.
124124 *
125- * @return An instance of ComputeNodeOperations class
125+ * @return An instance of the {@link ComputeNodeOperations} class.
126126 */
127127 public ComputeNodeOperations computeNodeOperations () {
128128 return computeNodeOperations ;
129129 }
130130
131131 /**
132- * Gets an {@link ApplicationOperations} for performing application related operations on the associated account.
132+ * Gets an {@link ApplicationOperations} object for performing application- related operations on the associated account.
133133 *
134- * @return An instance of ApplicationOperations class
134+ * @return An instance of the {@link ApplicationOperations} class.
135135 */
136136 public ApplicationOperations applicationOperations () {
137137 return applicationOperations ;
138138 }
139139
140140 /**
141- * Gets an {@link AccountOperations} for performing account related operations on the associated account.
141+ * Gets an {@link AccountOperations} object for performing account- related operations on the associated account.
142142 *
143- * @return An instance of AccountOperations class
143+ * @return An instance of the {@link AccountOperations} class.
144144 */
145145 public AccountOperations accountOperations () {
146146 return accountOperations ;
147147 }
148148
149149 /**
150- * Gets a list of behaviors that modify or customize requests to the Batch service.
150+ * Gets a collection of behaviors that modify or customize requests to the Batch service.
151151 *
152- * @return The collection of BatchClientBehavior classes .
152+ * @return The collection of {@link BatchClientBehavior} instances .
153153 */
154154 public Collection <BatchClientBehavior > customBehaviors () {
155155 return customBehaviors ;
156156 }
157157
158158 /**
159- * Sets a list of behaviors that modify or customize requests to the Batch service.
159+ * Sets a collection of behaviors that modify or customize requests to the Batch service.
160160 *
161- * @param customBehaviors The collection of BatchClientBehavior classes .
162- * @return A BatchClient instance
161+ * @param customBehaviors The collection of {@link BatchClientBehavior} instances .
162+ * @return The current instance.
163163 */
164164 public BatchClient withCustomBehaviors (Collection <BatchClientBehavior > customBehaviors ) {
165165 this .customBehaviors = customBehaviors ;
0 commit comments