forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
776 B
40 lines
776 B
/*
|
|
* 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.");
|
|
}
|
|
|
|
|
|
}
|