1 4 package org.jboss.test.entity.interfaces; 5 6 9 public interface TestEntityHome 10 extends javax.ejb.EJBHome 11 { 12 public static final String COMP_NAME="java:comp/env/ejb/TestEntity"; 13 public static final String JNDI_NAME="test/entity/TestEntity"; 14 15 public org.jboss.test.entity.interfaces.TestEntity create(org.jboss.test.entity.interfaces.TestEntityValue value) 16 throws javax.ejb.CreateException ,java.rmi.RemoteException ; 17 18 public org.jboss.test.entity.interfaces.TestEntity findByPrimaryKey(java.lang.String pk) 19 throws javax.ejb.FinderException ,java.rmi.RemoteException ; 20 21 public void removeExternal(java.lang.String entityID) 22 throws java.rmi.RemoteException ; 23 24 public void changeValue1(java.lang.String entityID,java.lang.String value1) 25 throws java.rmi.RemoteException ; 26 27 } 28 | Popular Tags |