com.jahnelgroup.jackson.security.policy.EvalulationLogic.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-field-security Show documentation
Show all versions of jackson-field-security Show documentation
Provides field level security for Jackson
package com.jahnelgroup.jackson.security.policy
/**
* Defines the type of logic that policies or roles can be combined
* together with.
*
* @author Steven Zgaljic
* @since 1.0.0
*/
enum class EvalulationLogic {
/**
* All must permit access.
*/
AND,
/**
* At least one must permit access.
*/
OR,
/**
* Exactly one must permit access.
*/
XOR
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy