/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ee.tlu.htk.dippler.course; import ee.tlu.htk.dippler.entities.Answer; import ee.tlu.htk.dippler.entities.User; import javax.ejb.Local; /** * * @author metz */ @Local public interface AnswerManagerLocal { public String manageAnswer(String action, String data, User user); public Answer unMarshal(String data); public String marshal(Answer answer); public Answer findById(Long id); }