Skip to content

Commit

Permalink
Made Tables service interfaces public (#22130)
Browse files Browse the repository at this point in the history
* Made service interfaces public for Key Vault and Tables impl clients.

* Removed kvErrorStrings.properties files from Key Vault SDKs. Made KeyVaultErrorCodeStrings store the constants that were in the files.

* Added check for null credentials in Key Vault Administration Builders.

* Reverted changes made to KV libraries.
  • Loading branch information
vcolin7 authored Jun 8, 2021
1 parent 477dd76 commit fa289ae
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import com.azure.core.util.Configuration;
import com.azure.core.util.serializer.JacksonAdapter;
import com.azure.core.util.serializer.SerializerAdapter;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@
import com.azure.data.tables.implementation.models.TablesQueryResponse;
import com.azure.data.tables.implementation.models.TablesSetAccessPolicyResponse;
import com.azure.data.tables.implementation.models.TablesUpdateEntityResponse;
import reactor.core.publisher.Mono;

import java.util.List;
import java.util.Map;
import reactor.core.publisher.Mono;

/** An instance of this class provides access to all the operations defined in Tables. */
public final class TablesImpl {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public TransactionalBatchImpl(AzureTableImpl client, SerializerAdapter transacti
*/
@Host("{url}")
@ServiceInterface(name = "AzureTableServices")
private interface TransactionalBatchService {
public interface TransactionalBatchService {
@Post("/$batch")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(TableServiceErrorException.class)
Expand Down

0 comments on commit fa289ae

Please sign in to comment.