/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ee.tlu.htk.dippler.managers; import ee.tlu.htk.dippler.entities.Organization; import ee.tlu.htk.dippler.entities.User; import javax.ejb.Local; /** * * @author pjotr */ @Local public interface ProfileManagerLocal { String manageProfile(String action, String data, User user, Organization org); ee.tlu.htk.dippler.entities.Profile findByUserId(Long user_id); }