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