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

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

The newest version!
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.app.iam;

import lombok.Getter;
import lombok.Setter;

import java.util.Collection;

/**
 * User memberships changes.
 */
@Getter
@Setter
public class UserUpdateResult {

	/**
	 * Groups added to user.
	 */
	Collection addedGroups;

	/**
	 * Groups removed from user.
	 */
	Collection removedGroups;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy