Skip to content

Commit 66f50a6

Browse files
committed
Make EXTENSION_ID constants package-private
1 parent 7a46f98 commit 66f50a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

webauthn-server-core/src/main/java/com/yubico/webauthn/data/Extensions.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Extensions {
3131
* FIDO AppID Extension (appid)</a>
3232
*/
3333
public static class Appid {
34-
public static final String EXTENSION_ID = "appid";
34+
static final String EXTENSION_ID = "appid";
3535
}
3636

3737
/**
@@ -42,7 +42,7 @@ public static class Appid {
4242
* FIDO AppID Exclusion Extension (appidExclude)</a>
4343
*/
4444
public static class AppidExclude {
45-
public static final String EXTENSION_ID = "appidExclude";
45+
static final String EXTENSION_ID = "appidExclude";
4646
}
4747

4848
/**
@@ -53,7 +53,7 @@ public static class AppidExclude {
5353
* Credential Properties Extension (credProps)</a>
5454
*/
5555
public static class CredentialProperties {
56-
public static final String EXTENSION_ID = "credProps";
56+
static final String EXTENSION_ID = "credProps";
5757

5858
/**
5959
* Extension outputs for the Credential Properties Extension (<code>credProps</code>).
@@ -109,7 +109,7 @@ public Optional<Boolean> getRk() {
109109
* Large blob storage extension (largeBlob)</a>
110110
*/
111111
public static class LargeBlob {
112-
public static final String EXTENSION_ID = "largeBlob";
112+
static final String EXTENSION_ID = "largeBlob";
113113

114114
/**
115115
* Extension inputs for the Large blob storage extension (<code>largeBlob</code>) in

0 commit comments

Comments
 (0)