Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. private String interruptor(){
  2.  
  3. String resultado = Constantes.VACIA;
  4. GestorMaestra gestorMaestra = new GestorMaestra();
  5.  
  6. try{
  7. //Aunque sea un Array solo devolvera una fila con las condiciones que se le envian
  8. BeanFilaDatos[] filaInterruptor = gestorMaestra.getTabla(Constantes.S10, Constantes.ISFANETO, Constantes.ES);
  9. for(BeanFilaDatos fila : filaInterruptor){
  10. resultado = fila.getCodigode().trim();
  11. }
  12. }catch(Exception e){
  13. e.printStackTrace();
  14. }
  15. return resultado;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement