107107
108108/**
109109 * The class for the Graph Service Client.
110- * @param <NativeRequestType > type of a request for the native http client
110+ * @param <nativeRequestType > type of a request for the native http client
111111 */
112- public class GraphServiceClient <NativeRequestType > extends BaseClient <NativeRequestType > implements IBaseClient <NativeRequestType > {
112+ public class GraphServiceClient <nativeRequestType > extends BaseClient <nativeRequestType > implements IBaseClient <nativeRequestType > {
113113 /**
114114 * Restricted constructor
115115 */
@@ -150,9 +150,9 @@ public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest>
150150 }
151151 /**
152152 * Builder to help configure the Graph service client
153- * @param <NativeRequestType > type of a request for the native http client
153+ * @param <nativeRequestType > type of a request for the native http client
154154 */
155- public static class Builder <httpClientType , NativeRequestType > extends BaseClient .Builder <httpClientType , NativeRequestType > {
155+ public static class Builder <httpClientType , nativeRequestType > extends BaseClient .Builder <httpClientType , nativeRequestType > {
156156 /**
157157 * Sets the serializer.
158158 *
@@ -162,7 +162,7 @@ public static class Builder<httpClientType, NativeRequestType> extends BaseClien
162162 */
163163 @ Nonnull
164164 @ Override
165- public Builder <httpClientType , NativeRequestType > serializer (@ Nonnull final ISerializer serializer ) {
165+ public Builder <httpClientType , nativeRequestType > serializer (@ Nonnull final ISerializer serializer ) {
166166 super .serializer (serializer );
167167 return this ;
168168 }
@@ -176,7 +176,7 @@ public Builder<httpClientType, NativeRequestType> serializer(@Nonnull final ISer
176176 */
177177 @ Nonnull
178178 @ Override
179- public Builder <httpClientType , NativeRequestType > httpProvider (@ Nonnull final IHttpProvider httpProvider ) {
179+ public Builder <httpClientType , nativeRequestType > httpProvider (@ Nonnull final IHttpProvider httpProvider ) {
180180 super .httpProvider (httpProvider );
181181 return this ;
182182 }
@@ -190,7 +190,7 @@ public Builder<httpClientType, NativeRequestType> httpProvider(@Nonnull final IH
190190 */
191191 @ Nonnull
192192 @ Override
193- public Builder <httpClientType , NativeRequestType > logger (@ Nonnull final ILogger logger ) {
193+ public Builder <httpClientType , nativeRequestType > logger (@ Nonnull final ILogger logger ) {
194194 super .logger (logger );
195195 return this ;
196196 }
@@ -204,7 +204,7 @@ public Builder<httpClientType, NativeRequestType> logger(@Nonnull final ILogger
204204 */
205205 @ Nonnull
206206 @ Override
207- public Builder <httpClientType , NativeRequestType > httpClient (@ Nonnull final httpClientType client ) {
207+ public Builder <httpClientType , nativeRequestType > httpClient (@ Nonnull final httpClientType client ) {
208208 super .httpClient (client );
209209 return this ;
210210 }
@@ -217,7 +217,7 @@ public Builder<httpClientType, NativeRequestType> httpClient(@Nonnull final http
217217 */
218218 @ Nonnull
219219 @ Override
220- public Builder <httpClientType , NativeRequestType > authenticationProvider (@ Nonnull final IAuthenticationProvider auth ) {
220+ public Builder <httpClientType , nativeRequestType > authenticationProvider (@ Nonnull final IAuthenticationProvider auth ) {
221221 super .authenticationProvider (auth );
222222 return this ;
223223 }
0 commit comments