Update of /cvsroot/xdoclet-plugins/xdoclet-plugins/ejb-testapp/src/main/java/org/xdoclet/plugins/ejb/testapp/intf
In directory sc8-pr-cvs1:/tmp/cvs-serv12270/ejb-testapp/src/main/java/org/xdoclet/plugins/ejb/testapp/interfaces
Added Files:
AccountLocal.java AccountRemote.java NoNumberException.java
Log Message:
stuff
--- NEW FILE: AccountLocal.java ---
package org.xdoclet.plugins.ejb.testapp.interfaces;
/**
* This class would normally be generated by XDoclet, but
* we keep it in the codebase only to ensure that the testapp
* can compile without XDoclet. This source is also used
* by the xdoclet-ejb plugin to compare the generated output.
*
* @author Aslak Hellesøy
* @version $Revision: 1.1 $
*/
public interface AccountLocal extends javax.ejb.EJBLocalObject {
java.util.Collection getOwners();
String getNumber() throws NoNumberException;
String getType();
}
--- NEW FILE: AccountRemote.java ---
package org.xdoclet.plugins.ejb.testapp.interfaces;
/**
* This class would normally be generated by XDoclet, but
* we keep it in the codebase only to ensure that the testapp
* can compile without XDoclet. This source is also used
* by the xdoclet-ejb plugin to compare the generated output.
*
* @author Aslak Hellesøy
* @version $Revision: 1.1 $
*/
public interface AccountRemote extends javax.ejb.EJBObject {
String getNumber() throws NoNumberException, java.rmi.RemoteException;
String getType() throws java.rmi.RemoteException;
}
--- NEW FILE: NoNumberException.java ---
package org.xdoclet.plugins.ejb.testapp.interfaces;
/**
* @author Aslak Hellesøy
* @version $Revision: 1.1 $
*/
public class NoNumberException extends Exception {
}
|