Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit 4a4564e

Browse files
committed
tests isVerifyingSSL
1 parent 460f661 commit 4a4564e

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

src/main/java/com/corbado/services/UserService.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public UserService(final UsersApi client) {
2929
/**
3030
* Create a user.
3131
*
32-
* @param fullName the full name
33-
* @param status the status
32+
* @param fullName the full name
33+
* @param status the status
3434
* @param explicitWebauthnID the explicit webauthn ID
3535
* @return the user entity
3636
* @throws CorbadoServerException If any server-side error occurs
@@ -41,12 +41,12 @@ public UserEntity create(
4141
@Nullable final String explicitWebauthnID)
4242
throws CorbadoServerException {
4343

44-
final UserCreateReq request =
45-
new UserCreateReq()
46-
.fullName(fullName)
47-
.status(status)
48-
.explicitWebauthnID(explicitWebauthnID);
44+
final UserCreateReq request = new UserCreateReq()
45+
.fullName(fullName)
46+
.status(status)
47+
.explicitWebauthnID(explicitWebauthnID);
4948
try {
49+
System.err.println("IsVerifyingSSL: " + this.client.getApiClient().isVerifyingSsl());
5050
return new UserEntity(this.client.userCreate(request));
5151
} catch (final ApiException e) {
5252
throw new CorbadoServerException(e);
@@ -93,7 +93,8 @@ public UserEntity createActiveByName(@NonNull final String fullName)
9393
* Delete user.
9494
*
9595
* @param userId the user id
96-
* @throws CorbadoServerException exception thrown on error or if user is not found
96+
* @throws CorbadoServerException exception thrown on error or if user is not
97+
* found
9798
*/
9899
public void delete(@NonNull final String userId) throws CorbadoServerException {
99100
try {

0 commit comments

Comments
 (0)