Skip to content

Commit bf2a463

Browse files
committed
Fixed import issue by changing Base64Url to Base64Uri
1 parent f2a499b commit bf2a463

File tree

11 files changed

+520
-520
lines changed

11 files changed

+520
-520
lines changed

sdk/keyvault/azure-security-keyvault-keys-v2/src/main/java/com/azure/v2/security/keyvault/keys/implementation/KeyClient.java

Lines changed: 174 additions & 174 deletions
Large diffs are not rendered by default.

sdk/keyvault/azure-security-keyvault-keys-v2/src/main/java/com/azure/v2/security/keyvault/keys/implementation/KeyClientImpl.java

Lines changed: 177 additions & 177 deletions
Large diffs are not rendered by default.

sdk/keyvault/azure-security-keyvault-keys-v2/src/main/java/com/azure/v2/security/keyvault/keys/implementation/models/BackupKeyResult.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import io.clientcore.core.serialization.json.JsonSerializable;
99
import io.clientcore.core.serialization.json.JsonToken;
1010
import io.clientcore.core.serialization.json.JsonWriter;
11-
import io.clientcore.core.utils.Base64Url;
11+
import io.clientcore.core.utils.Base64Uri;
1212
import java.io.IOException;
1313

1414
/**
@@ -20,7 +20,7 @@ public final class BackupKeyResult implements JsonSerializable<BackupKeyResult>
2020
* The backup blob containing the backed up key.
2121
*/
2222
@Metadata(generated = true)
23-
private Base64Url value;
23+
private Base64Uri value;
2424

2525
/**
2626
* Creates an instance of BackupKeyResult class.
@@ -31,7 +31,7 @@ private BackupKeyResult() {
3131

3232
/**
3333
* Get the value property: The backup blob containing the backed up key.
34-
*
34+
*
3535
* @return the value value.
3636
*/
3737
@Metadata(generated = true)
@@ -54,7 +54,7 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
5454

5555
/**
5656
* Reads an instance of BackupKeyResult from the JsonReader.
57-
*
57+
*
5858
* @param jsonReader The JsonReader being read.
5959
* @return An instance of BackupKeyResult if the JsonReader was pointing to an instance of it, or null if it was
6060
* pointing to JSON null.
@@ -70,7 +70,7 @@ public static BackupKeyResult fromJson(JsonReader jsonReader) throws IOException
7070

7171
if ("value".equals(fieldName)) {
7272
deserializedBackupKeyResult.value
73-
= reader.getNullable(nonNullReader -> new Base64Url(nonNullReader.getString()));
73+
= reader.getNullable(nonNullReader -> new Base64Uri(nonNullReader.getString()));
7474
} else {
7575
reader.skipChildren();
7676
}

0 commit comments

Comments
 (0)