Esqueleto de proyecto inicial.

This commit is contained in:
mgarcianun
2019-11-20 02:00:09 +01:00
parent 3812864db0
commit 7b2edd8080
43 changed files with 1512 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package ejb.visit;
import javax.ejb.Remote;
/**
* Interfaz remota del EJB Definimos los métodos que estarán disponibles para
* los clientes del EJB
*
* @author mark
*
*/
@Remote
public interface VisitFacadeRemote {
/**
* Definimos la interfaz remota
*/
public void ejbMethod(String parameter);
}