View Javadoc

1   /*
2    * Created on 29.04.2005 from Linke
3    *
4    */
5   package test.crispy.example.ejb;
6   
7   import javax.ejb.EJBObject;
8   
9   import test.crispy.example.model.Kunde;
10  
11  /**
12   * @author Linke
13   *
14   */
15  public interface EjbService extends EJBObject {
16  
17  	public static final String JNDI_NAME = "ejb/EjbService";
18  	
19  	
20  	public String echo(String pvEchoString);
21  	public Kunde renameKunde (Kunde pvKunde, String pvNewName);
22  	
23  	public int add(int a, int b);
24  	public Long addLong (Long a, Long b);
25  
26  
27  }