/*
********************* [ P O C K E T C A M P U S ] *****************
* [ LICENCE ] see "licence"-file in the root directory
* [ MAINTAINER ] andreas.kirchner@epfl.ch
* [ STATUS ] stable
*
**************************[ C O M M E N T S ]**********************
*
* Models the EPFL-user-Status of a User in our Application.
*
*******************************************************************
*/
package org.pocketcampus.shared.user;
public enum UserStatus {
STUDENT,PHD,STAFF,VISITOR
}
|