UserGetter.java

16 lines | 243 B Blame History Raw Download
package br.ufrgs.inf.prosoft.tigris.monitoring.usersession;

/**
 * The interface User getter.
 */
public interface UserGetter {

    /**
     * Gets current user.
     *
     * @return the current user
     */
    String getCurrentUser();

}