/* * 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.Client; import javax.ejb.Local; /** * * @author metz */ @Local public interface ClientManagerLocal { Long validate(String username, String password); public Client getClient(Long id); public boolean isTrusted(Long id); public String getOrganization(Client client); }