Skip to content

Commit f1a4115

Browse files
committed
add new API calls
1 parent cb44703 commit f1a4115

File tree

3 files changed

+300
-47
lines changed

3 files changed

+300
-47
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ Then add the dependency to your `pom.xml`:
9999
- **Wrapping Key Generation**: Generate wrapping keys from Shamir's Secret Sharing keys
100100
- **Typed Patch Operations**: Use structured `PatchOperation` objects for user updates
101101
- **Bulk Token Operations**: Create multiple tokens efficiently with typed options
102+
- **Bulk User Deletion**: Delete multiple users efficiently in a single operation
103+
- **License Key Management**: Set system license keys for enhanced functionality
102104
- **Shared Record Management**: Create and retrieve shared records with partner organizations
103105

104106
### Improved Error Handling
@@ -185,6 +187,10 @@ System.out.println("Generated wrapping key: " + wrappingKey.get("wrappingkey"));
185187
// Get system metrics
186188
Map<String, Object> metrics = api.getSystemMetrics(null);
187189
System.out.println("System metrics: " + metrics);
190+
191+
// Set system license key
192+
Map<String, Object> licenseResult = api.setLicenseKey("your-license-key", null);
193+
System.out.println("License key setting result: " + licenseResult.get("status"));
188194
```
189195

190196
### Token Management

0 commit comments

Comments
 (0)