Skip to content

Commit

Permalink
Adding annotation @ServiceClient to Storage-Queue
Browse files Browse the repository at this point in the history
  • Loading branch information
vhvb1989 committed Sep 23, 2019
1 parent 78401b1 commit b7ee401
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.http.rest.VoidResponse;
import com.azure.core.implementation.annotation.ServiceClient;
import com.azure.core.implementation.http.PagedResponseBase;
import com.azure.core.implementation.util.FluxUtil;
import com.azure.core.util.Context;
Expand Down Expand Up @@ -61,6 +62,7 @@
* @see SharedKeyCredential
* @see SASTokenCredential
*/
@ServiceClient(builder = QueueClientBuilder.class, isAsync = true)
public final class QueueAsyncClient {
private final ClientLogger logger = new ClientLogger(QueueAsyncClient.class);
private final AzureQueueStorageImpl client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.VoidResponse;
import com.azure.core.implementation.annotation.ServiceClient;
import com.azure.core.util.Context;
import com.azure.storage.common.IPRange;
import com.azure.storage.common.SASProtocol;
Expand Down Expand Up @@ -42,6 +43,7 @@
* @see SharedKeyCredential
* @see SASTokenCredential
*/
@ServiceClient(builder = QueueClientBuilder.class)
public final class QueueClient {
private final QueueAsyncClient client;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.http.rest.VoidResponse;
import com.azure.core.implementation.annotation.ServiceClient;
import com.azure.core.implementation.http.PagedResponseBase;
import com.azure.core.implementation.util.FluxUtil;
import com.azure.core.util.Context;
Expand Down Expand Up @@ -59,6 +60,7 @@
* @see SharedKeyCredential
* @see SASTokenCredential
*/
@ServiceClient(builder = QueueServiceClientBuilder.class, isAsync = true)
public final class QueueServiceAsyncClient {
private final ClientLogger logger = new ClientLogger(QueueServiceAsyncClient.class);
private final AzureQueueStorageImpl client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.http.rest.VoidResponse;
import com.azure.core.implementation.annotation.ServiceClient;
import com.azure.core.util.Context;
import com.azure.storage.common.AccountSASPermission;
import com.azure.storage.common.AccountSASResourceType;
Expand Down Expand Up @@ -44,6 +45,7 @@
* @see SharedKeyCredential
* @see SASTokenCredential
*/
@ServiceClient(builder = QueueServiceClientBuilder.class)
public final class QueueServiceClient {
private final QueueServiceAsyncClient client;

Expand Down

0 comments on commit b7ee401

Please sign in to comment.