![JAR search and dependency download from the Maven repository](/logo.png)
org.ligoj.app.iam.IamConfiguration 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
/*
* Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
*/
package org.ligoj.app.iam;
import lombok.Getter;
import lombok.Setter;
/**
* Identity and Access Management configuration.
*/
@Getter
@Setter
public class IamConfiguration {
/**
* User repository.
*/
private IUserRepository userRepository;
/**
* Company repository.
*/
private ICompanyRepository companyRepository;
/**
* Group repository.
*/
private IGroupRepository groupRepository;
/**
* The optional related node identifier.
*/
private String node;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy