Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1. ​​/*
  2.  * VerNotas.java
  3.  *
  4.  * Created on 12 de mayo de 2003, 09:49
  5.  */
  6.  
  7. package agd.consultaPagos.acciones;
  8. import javax.servlet.http.HttpServletRequest;
  9. import javax.servlet.http.HttpServletResponse;
  10.  
  11. /** Acción para ver las NOTAS(Mensajes para los usuarios)
  12.  *
  13.  * @author Gustavo Mateos
  14.  */
  15. public class VerNotas extends amadeus.waf.AccionWebBase {
  16.  
  17.     /** Creates a new instance of VerAyudaLogin */
  18.     public VerNotas() {
  19.     }
  20.  
  21.     public String ejecutar(HttpServletRequest request, HttpServletResponse response) throws Exception {
  22.         return "OK";
  23.     }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement