Skip to content

Commit 01dee42

Browse files
authored
Merge pull request #21 from LoginRadius/java-sdk-release-11.7.0
Java sdk release 11.7.0
2 parents 00fd814 + 66347a6 commit 01dee42

File tree

266 files changed

+1174
-343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

266 files changed

+1174
-343
lines changed

CHANGELOG.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
1-
> **LoginRadius Java SDK Change Log** provides information regarding what has changed, more specifically what changes, improvements and bug fix has been made to the SDK. For more details please refer to the [LoginRadius API Documention(https://www.loginradius.com/docs/api/v2/deployment/sdk-libraries/java-library/)
1+
> **LoginRadius Java SDK Change Log** provides information regarding what has changed, more specifically what changes, improvements and bug fix has been made to the SDK. For more details please refer to the [LoginRadius API Documentation](https://www.loginradius.com/docs/api/v2/deployment/sdk-libraries/java-library/)
2+
3+
4+
# Version 11.7.0
5+
6+
**Release Date:** March 24, 2025
7+
8+
## Enhancements
9+
10+
We've introduced a brand-new set of Webhook APIs, designed with enhanced functionality and flexibility. These new APIs support advanced features including:
11+
12+
- Custom header configuration
13+
- Query parameter support
14+
- Webhook authentication methods (Bearer Token and Basic Auth)
15+
- Support for a custom `Name` parameter to label each webhook subscription
16+
17+
As part of this upgrade, the legacy Webhook APIs have been deprecated in favor of the new, more robust versions.
18+
19+
## Newly Added APIs
20+
21+
- `getWebhookSubscriptionDetail` – Retrieve detailed information about a specific webhook subscription
22+
- `createWebhookSubscription` – Create a new webhook subscription with advanced configuration options
23+
- `deleteWebhookSubscription` – Remove an existing webhook subscription
24+
- `updateWebhookSubscription` – Modify an existing webhook subscription
25+
- `listAllWebhooks` – Retrieve a list of all configured webhook subscriptions
26+
- `getWebhookEvents` – Fetch available webhook events supported by the system
27+
28+
## Deprecated APIs
29+
30+
The following legacy APIs have been deprecated:
31+
32+
- `webHookUnsubscribe`
33+
- `webhookTest`
34+
- `webHookSubscribe`
35+
- `getWebHookSubscribedURLs`
236

337

438
# Version 11.6.0

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022 LoginRadius Inc.
1+
Copyright (c) 2025 LoginRadius Inc.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

LoginRadius-JavaSDK/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.loginradius.sdk</groupId>
88
<artifactId>java-sdk</artifactId>
9-
<version>11.6.0</version>
9+
<version>11.7.0</version>
1010
<name>LoginRadius-CustomerIdentity-JavaSDK</name>
1111
<description>LoginRadius Java SDK</description>
1212
<url>https://github.com/LoginRadius/java-sdk</url>

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/account/AccountApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.account;

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/account/RoleApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.account;

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/account/SottApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.account;

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/advanced/ConfigurationApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.advanced;

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/advanced/ConsentManagementApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.advanced;

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/advanced/CustomObjectApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.advanced;

LoginRadius-JavaSDK/src/main/java/com/loginradius/sdk/api/advanced/MultiFactorAuthenticationApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
*
33
* Created by LoginRadius Development Team
4-
Copyright 2019 LoginRadius Inc. All rights reserved.
4+
Copyright 2025 LoginRadius Inc. All rights reserved.
55
*/
66

77
package com.loginradius.sdk.api.advanced;

0 commit comments

Comments
 (0)