/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package net.paulgray.lmsrest.user; /** * * @author pfgray */ public interface UserService { public User getUserForId(String Id); public User getUserForUsername(String username); }