org.ligoj.app.plugin.id.resource.ContainerCountVo Maven / Gradle / Ivy
/*
* Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
*/
package org.ligoj.app.plugin.id.resource;
import org.ligoj.app.model.ContainerType;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
/**
* Container where visible users are counted.
* DN is not exposed.
*/
@Getter
@Setter
public class ContainerCountVo extends ContainerWithScopeVo {
/**
* SID, for Hazelcast
*/
private static final long serialVersionUID = 1L;
/**
* Unique visible members count.
*/
private int countVisible;
/**
* Unique visible or not members count.
*/
private int count;
/**
* Can manage the members of this group.
*/
private boolean canWrite;
/**
* Can delete this group.
*/
private boolean canAdmin;
/**
* Container type.
*/
private ContainerType containerType;
/**
* Parent groups/companies, from the topmost to the closest parent
*/
private List parents;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy