blob: a1507ed4adf98fec38e66fc9862900dfb429f305 [file] [log] [blame]
margarethaf438c592017-10-25 15:23:50 +02001package de.ids_mannheim.korap.constant;
margaretha1f106f62017-10-18 22:27:30 +02002
margaretha69e8adc2018-03-15 15:14:22 +01003import de.ids_mannheim.korap.entity.UserGroup;
4
5/** Defines possible statuses of {@link UserGroup}s
6 *
7 * @author margaretha
8 *
9 */
margaretha1f106f62017-10-18 22:27:30 +020010public enum UserGroupStatus {
margaretha71e6fca2018-01-18 18:11:48 +010011 ACTIVE, DELETED,
12 // group members cannot see the group
13 HIDDEN;
margaretha1f106f62017-10-18 22:27:30 +020014}