org.ligoj.app.plugin.id.resource.GroupVo Maven / Gradle / Ivy
/*
* Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
*/
package org.ligoj.app.plugin.id.resource;
import lombok.Getter;
import lombok.Setter;
/**
* Group details.
*/
@Getter
@Setter
public class GroupVo {
/**
* Group name, original CN.
*/
private String name;
/**
* Is this group can be written by the current principal user.
*/
private boolean canWrite;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy