https://github.com/authzforce/core-pdp-api
AuthzForce Core PDP API
https://github.com/authzforce/core-pdp-api
Last synced: about 1 year ago
JSON representation
AuthzForce Core PDP API
- Host: GitHub
- URL: https://github.com/authzforce/core-pdp-api
- Owner: authzforce
- License: apache-2.0
- Created: 2016-01-13T14:49:49.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2023-11-03T03:07:46.000Z (over 2 years ago)
- Last Synced: 2025-04-13T13:07:20.227Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 2.06 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.codacy.com/gh/authzforce/core-pdp-api/dashboard?utm_source=github.com&utm_medium=referral&utm_content=authzforce/core-pdp-api&utm_campaign=Badge_Grade)
[](http://javadoc.io/doc/org.ow2.authzforce/authzforce-ce-core-pdp-api)
# AuthzForce Core PDP API
High-level API for using AuthzForce PDP engine and implementing PDP engine extensions: attribute datatypes, functions, policy/rule combining algorithms, attribute providers, policy providers, XACML Request/Result filters, etc.
## Support
If you are experiencing any problem with this project, you may report it on the GitHub Issues.
Please include as much information as possible; the more we know, the better the chance of a quicker resolution:
* Software version
* Platform (OS and JDK)
* Stack traces generally really help! If in doubt include the whole thing; often exceptions get wrapped in other exceptions and the exception right near the bottom explains the actual error, not the first few lines at the top. It's very easy for us to skim-read past unnecessary parts of a stack trace.
* Log output can be useful too; sometimes enabling DEBUG logging can help;
* Your code & configuration files are often useful.
If you wish to contact the developers for other reasons, use [AuthzForce contact mailing list](http://scr.im/azteam).
## Known issues
### Class not found: com.sun.mail.XXX
If you need to use XACML RFC822Name datatype, you need to add an actual implementation of JavaMail API as dependency (must match the version of `javax.mail-api` dependency in the [POM](pom.xml) ), such as:
```xml
com.sun.mail
javax.mail
1.6.0
```