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

org.ligoj.app.plugin.id.resource.GroupEditionVo Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.app.plugin.id.resource;

import java.util.List;

import lombok.Getter;
import lombok.Setter;

/**
 * Group bean for edition.
 */
@Getter
@Setter
public class GroupEditionVo extends ContainerEditionVo {

	/**
	 * Department number or name, multivalued. May be used to link user department attribute.
	 */
	private List departments;

	/**
	 * Assistant of this group, multivalued. Must be UID of the related users. Must exist.
	 */
	private List assistants;

	/**
	 * Owner of this group, multivalued. Must be UID of the related users. Must exist.
	 */
	private List owners;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy