| Einstein |
/*
* $Id: Einstein.java.html,v 1.1 2002/09/22 22:32:41 o_rossmueller Exp $
* $Source: /cvsroot/junitee/JUnitEE/doc/tutorial/org/junitee/ejb/einstein/Einstein.java.html,v $
*/
package org.junitee.ejb.einstein;
import javax.ejb.EJBObject;
/**
* Einstein is the remote interface for the Einstein bean
*/
public interface Einstein extends EJBObject, EinsteinBusiness
{
// Nothing more needed
}
| Einstein |