KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > entity > interfaces > TestEntityHome


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package org.jboss.test.entity.interfaces;
5
6 /**
7  * Home interface for TestEntity.
8  */

9 public interface TestEntityHome
10    extends javax.ejb.EJBHome JavaDoc
11 {
12    public static final String JavaDoc COMP_NAME="java:comp/env/ejb/TestEntity";
13    public static final String JavaDoc 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 JavaDoc,java.rmi.RemoteException JavaDoc;
17
18    public org.jboss.test.entity.interfaces.TestEntity findByPrimaryKey(java.lang.String JavaDoc pk)
19       throws javax.ejb.FinderException JavaDoc,java.rmi.RemoteException JavaDoc;
20
21    public void removeExternal(java.lang.String JavaDoc entityID)
22       throws java.rmi.RemoteException JavaDoc;
23
24    public void changeValue1(java.lang.String JavaDoc entityID,java.lang.String JavaDoc value1)
25       throws java.rmi.RemoteException JavaDoc;
26
27 }
28
Popular Tags