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.
SIPRP/trunk/SIPRPSoft/src/siprp/cursos/provider/PessoasProvider.java

126 lines
3.2 KiB

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package siprp.cursos.provider;
import com.evolute.genericpeople.PessoaDocumentoInterface;
import com.evolute.genericpeople.PessoaInterface;
import com.evolute.genericpeople.PessoasProviderInterface;
import com.evolute.module.cursos.data.CurFormadoresData;
import com.evolute.module.cursos.data.CurFormandosData;
import com.evolute.utils.arrays.Virtual2DArray;
import com.evolute.utils.data.IDObject;
import com.evolute.utils.data.Mappable;
import com.evolute.utils.ui.search.SearchDialog;
import java.util.List;
/**
*
* @author lflores
*/
public class PessoasProvider implements PessoasProviderInterface
{
private static PessoasProvider provider = null;
private PessoasProvider()
{
}
public static PessoasProvider getProvider()
throws Exception
{
if( provider == null )
{
provider = new PessoasProvider();
}
return provider;
}
public void setDocumentosForPessoa(Integer intgr, PessoaDocumentoInterface[] pdis) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public PessoaInterface getPessoaFromFormador(CurFormadoresData cfd) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public PessoaInterface getPessoaFromFormando(CurFormandosData cfd) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean biAlreadyExists(Integer intgr, String string) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public PessoaInterface loadPessoa(Integer intgr) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public List<IDObject> getAllPessoasIDObjects() throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public Mappable[] getPaises() throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public String getNacionalidadeByPaisID(Integer intgr) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public List<IDObject> getTiposDocumento() throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public PessoaDocumentoInterface[] getDocumentosForPessoa(Integer intgr) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public PessoaInterface newPessoa()
{
throw new UnsupportedOperationException("Not supported yet.");
}
public PessoaDocumentoInterface newPessoaDocumento()
{
throw new UnsupportedOperationException("Not supported yet.");
}
public Virtual2DArray search(String string) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean hasDetails()
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void showDetails(SearchDialog sd, Object o) throws Exception
{
throw new UnsupportedOperationException("Not supported yet.");
}
public String getSearchTitle()
{
throw new UnsupportedOperationException("Not supported yet.");
}
public String[] getColumnNames()
{
throw new UnsupportedOperationException("Not supported yet.");
}
}