All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gold.scim.common.resources.multicomplex.Entitlement Maven / Gradle / Ivy

The newest version!
package de.gold.scim.common.resources.multicomplex;

import lombok.Builder;
import lombok.NoArgsConstructor;


/**
 * author Pascal Knueppel 
* created at: 11.10.2019 - 13:15
*
* A list of entitlements for the user that represent a thing the user has. An entitlement may be an * additional right to a thing, object, or service. No vocabulary or syntax is specified; service providers * and clients are expected to encode sufficient information in the value so as to accurately and without * ambiguity determine what the user has access to. This value has no canonical types, although a type may be * useful as a means to scope entitlements. */ @NoArgsConstructor public class Entitlement extends MultiComplexNode { @Builder public Entitlement(String type, Boolean primary, String display, String value, String ref) { super(type, primary, display, value, ref); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy