https://github.com/fusionauth/fusionauth-java-client
Java 8 client library for FusionAuth
https://github.com/fusionauth/fusionauth-java-client
api-client fusionauth java8 rest-client
Last synced: about 1 year ago
JSON representation
Java 8 client library for FusionAuth
- Host: GitHub
- URL: https://github.com/fusionauth/fusionauth-java-client
- Owner: FusionAuth
- License: apache-2.0
- Created: 2018-08-24T19:19:40.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-10-25T21:37:23.000Z (over 1 year ago)
- Last Synced: 2024-10-27T00:21:39.704Z (over 1 year ago)
- Topics: api-client, fusionauth, java8, rest-client
- Language: Java
- Homepage: https://fusionauth.io
- Size: 1.39 MB
- Stars: 12
- Watchers: 13
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README-DEV.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## Developer information
If you are making updates to this library, please keep these items in mind:
* Domain objects should be placed in `src/main/java/io/fusionauth/domain`
* Domain objects should generally be placed in the root package and use class names that separate them from everything else. Sub-packages should be avoided due to issues with typed languages that have poor namespacing support.
* i.e. `Entity.java` should not be placed in a sub-package.
* API request objects should be placed in `src/main/java/io/fusionauth/domain/api`
* API request objects should be placed in the root package and use class names that include the domain name
* i.e. `EntityTypeSearchRequest.java` rather than `entity/type/SearchRequest.java`