/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package socius.state; import socius.dispositivos.ServidorRemoto; import socius.excecoes.ComputadorNaoConectadoException; import socius.excecoes.FalhaNaConexaoComServidorException; import socius.excecoes.UsuarioInvalidoException; import socius.excecoes.UsuarioJaLogadoException; /** * * @author Ana */ public interface EstadoComputador{ public void conectar() throws FalhaNaConexaoComServidorException, UsuarioInvalidoException, UsuarioJaLogadoException; public void desconectar(); public ServidorRemoto getServidorConectado() throws ComputadorNaoConectadoException; }