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

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

There is a newer version: 4.1.10
Show newest version
/*
 * 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