File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
objectbox-java/src/main/java/io/objectbox/sync/server Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -283,31 +283,31 @@ public SyncServerBuilder workerThreads(int workerThreads) {
283
283
* <p>
284
284
* The public key should be in the PEM format.
285
285
*/
286
- public SyncServerBuilder jwtConfigPublicKey (String publicKey ) {
286
+ public SyncServerBuilder jwtPublicKey (String publicKey ) {
287
287
this .jwtPublicKey = publicKey ;
288
288
return this ;
289
289
}
290
290
291
291
/**
292
292
* Sets the JWKS (Json Web Key Sets) URL to fetch the current public key used to verify JWT tokens.
293
293
*/
294
- public SyncServerBuilder jwtConfigPublicKeyUrl (String publicKeyUrl ) {
294
+ public SyncServerBuilder jwtPublicKeyUrl (String publicKeyUrl ) {
295
295
this .jwtPublicKeyUrl = publicKeyUrl ;
296
296
return this ;
297
297
}
298
298
299
299
/**
300
300
* Sets the JWT claim "iss" (issuer) used to verify JWT tokens.
301
301
*/
302
- public SyncServerBuilder jwtConfigClaimIss (String claimIss ) {
302
+ public SyncServerBuilder jwtClaimIss (String claimIss ) {
303
303
this .jwtClaimIss = claimIss ;
304
304
return this ;
305
305
}
306
306
307
307
/**
308
308
* Sets the JWT claim "aud" (audience) used to verify JWT tokens.
309
309
*/
310
- public SyncServerBuilder jwtConfigClaimAud (String claimAud ) {
310
+ public SyncServerBuilder jwtClaimAud (String claimAud ) {
311
311
this .jwtClaimAud = claimAud ;
312
312
return this ;
313
313
}
You can’t perform that action at this time.
0 commit comments