/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package siprp.cursos.logic; import com.evolute.genericpeople.AutorizacaoLogicInterface; import com.evolute.swing.frame.EvoFrame; /** * * @author lflores */ public class AutorizacaoLogic implements AutorizacaoLogicInterface { private static AutorizacaoLogic logic = null; private AutorizacaoLogic() { } public static AutorizacaoLogic getLogic() throws Exception { if( logic == null ) { logic = new AutorizacaoLogic(); } return logic; } public boolean insertPedido(EvoFrame ef, Integer intgr, String string, String string1, byte[] bytes, Integer intgr1) throws Exception { throw new UnsupportedOperationException("Not supported yet."); } }