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.
42 lines
820 B
42 lines
820 B
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package siprp.cursos.provider;
|
|
|
|
import com.evolute.genericpeople.AutorizacaoProviderInterface;
|
|
|
|
/**
|
|
*
|
|
* @author lflores
|
|
*/
|
|
public class AutorizacaoProvider implements AutorizacaoProviderInterface
|
|
{
|
|
private static AutorizacaoProvider provider = null;
|
|
|
|
private AutorizacaoProvider()
|
|
{
|
|
}
|
|
|
|
public static AutorizacaoProvider getProvider()
|
|
throws Exception
|
|
{
|
|
if( provider == null )
|
|
{
|
|
provider = new AutorizacaoProvider();
|
|
}
|
|
return provider;
|
|
}
|
|
|
|
public Integer getAutorizadorCursos()
|
|
{
|
|
throw new UnsupportedOperationException("Not supported yet.");
|
|
}
|
|
|
|
public Integer getSubTipoIDForDescricao(String string) throws Exception
|
|
{
|
|
throw new UnsupportedOperationException("Not supported yet.");
|
|
}
|
|
}
|