MVN

org.ow2.authzforce : authzforce-pdp-ext-json-path

Maven & Gradle

May 22, 2024

org.ow2.authzforce:authzforce-pdp-ext-json-path · AuthzForce PDP extensions for JSON value processing, in particular JSONPath evaluation; it provides the XACML datatype 'urn:ow2:authzforce:feature:pdp:datatype:json' for JSON object/array values, and XACML functions that evaluate a JSON path (second parameter of standard string datatype) against an input JSON object/array (first parameter of datatype 'urn:ow2:authzforce:feature:pdp:datatype:json') and return the result of this evaluation. The return datatype depends on the actual function used: 'urn:ow2:authzforce:feature:pdp:function:string-from-json-path' returns a bag of strings, 'urn:ow2:authzforce:feature:pdp:function:integer-from-json-path' returns a bag of integers, 'urn:ow2:authzforce:feature:pdp:function:double-from-json-path' returns a bag of doubles, 'urn:ow2:authzforce:feature:pdp:function:boolean-from-json-path' returns a bag of booleans.

<dependency>
    <groupId>org.ow2.authzforce</groupId>
    <artifactId>authzforce-pdp-ext-json-path</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.ow2.authzforce : authzforce-pdp-ext-json-path to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of org.ow2.authzforce : authzforce-pdp-ext-json-path to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
authzforce-pdp-ext-json-path-1.0.0

How to add a dependency to Maven

Add the following org.ow2.authzforce : authzforce-pdp-ext-json-path maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.ow2.authzforce</groupId>
    <artifactId>authzforce-pdp-ext-json-path</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.ow2.authzforce : authzforce-pdp-ext-json-path gradle dependency to your build.gradle file:

implementation 'org.ow2.authzforce:authzforce-pdp-ext-json-path:1.0.0'

Gradle Kotlin DSL: Add the following org.ow2.authzforce : authzforce-pdp-ext-json-path gradle kotlin dependency to your build.gradle.kts file:

implementation("org.ow2.authzforce:authzforce-pdp-ext-json-path:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.ow2.authzforce : authzforce-pdp-ext-json-path sbt scala dependency to your build.sbt file:

libraryDependencies += "org.ow2.authzforce" % "authzforce-pdp-ext-json-path" % "1.0.0"