1 25 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.ejb2view; 26 27 import javax.ejb.EJBLocalObject ; 28 29 34 public interface SimpleEjb2Local extends EJBLocalObject { 35 36 39 int DEFAULT_CODE_LOCAL = 1; 40 41 44 String DEFAULT_NAME_LOCAL = "test"; 45 46 49 String DEFAULT_MESSAGE = "Hello"; 50 51 56 void setValues(final int code, final String name); 57 58 62 String sayHello(); 63 64 68 int getCodeLocal(); 69 70 74 String getNameLocal(); 75 } 76 | Popular Tags |