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

org.ligoj.app.iam.ResourceOrg Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy