org.ligoj.app.iam.ResourceOrg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-api Show documentation
Show all versions of plugin-api Show documentation
Plugin API definition and compatibility following semver
The newest version!
/*
* Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
*/
package org.ligoj.app.iam;
/**
* An organizational resource : a DN and a unique identifier. This element is the base for all security management with
* delegates.
*/
public interface ResourceOrg {
/**
* The distinguished name (DN) of this element.
*
* @return the distinguished name (DN) of this element.
*/
String getDn();
/**
* The unique identifier also known as RDN.
*
* @return the unique identifier also known as RDN.
*/
String getId();
}