From: Konstantin P. <ko...@us...> - 2006-08-29 18:56:31
|
Update of /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-weblogic/src/test/java/org/xdoclet/testapp/ejb/interfaces In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4362/plugin-weblogic/src/test/java/org/xdoclet/testapp/ejb/interfaces Added Files: AccountLocal.java AccountLocalHome.java AccountRemote.java AccountRemoteHome.java Dummy.java NoNumberException.java TransferEndPoint.java TransferLocal.java TransferLocalHome.java TransferRemote.java TransferRemoteHome.java Log Message: syncronisation. evrythiing builds up to webwork --- NEW FILE: Dummy.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.interfaces; /** * @author Diogo Quintela * @version $Revision: 1.1 $ */ public interface Dummy { // empty } --- NEW FILE: TransferRemote.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela * @version $Revision: 1.1 $ */ public interface TransferRemote extends javax.ejb.EJBObject { void transferAmount(java.lang.String srcAcc, java.lang.String dstAcc, double amount) throws javax.naming.NamingException, javax.ejb.FinderException, java.rmi.RemoteException; } --- NEW FILE: TransferLocal.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela */ public interface TransferLocal extends javax.ejb.EJBLocalObject { void transferAmount(java.lang.String srcAcc, java.lang.String dstAcc, double amount) throws javax.naming.NamingException, javax.ejb.FinderException; } --- NEW FILE: AccountLocalHome.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela * @version $Revision: 1.1 $ */ public interface AccountLocalHome extends javax.ejb.EJBLocalHome { public static final String COMP_NAME="java:comp/env/ejb/AccountLocal"; public static final String JNDI_NAME="jndi.AccountLocal"; org.xdoclet.testapp.ejb.interfaces.AccountLocal create(java.lang.String pk) throws javax.ejb.CreateException; org.xdoclet.testapp.ejb.interfaces.AccountLocal findAccountWithBiggestStatement() throws javax.ejb.FinderException; java.util.Collection findOther(java.lang.String param1, java.lang.Integer param2) throws javax.ejb.FinderException; org.xdoclet.testapp.ejb.interfaces.AccountLocal findWithHighestBalance() throws javax.ejb.FinderException; org.xdoclet.testapp.ejb.interfaces.AccountLocal findByPrimaryKey(java.lang.String pk) throws javax.ejb.FinderException; } --- NEW FILE: AccountRemoteHome.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela * @version $Revision: 1.1 $ */ public interface AccountRemoteHome extends javax.ejb.EJBHome { public static final String COMP_NAME="java:comp/env/ejb/AccountRemote"; public static final String JNDI_NAME="jndi.AccountRemote"; org.xdoclet.testapp.ejb.interfaces.AccountRemote create(java.lang.String pk) throws javax.ejb.CreateException, java.rmi.RemoteException; org.xdoclet.testapp.ejb.interfaces.AccountRemote findAccountWithBiggestStatement() throws javax.ejb.FinderException, java.rmi.RemoteException; java.util.Collection findAll(int[] _arg0) throws javax.ejb.FinderException, java.rmi.RemoteException; java.util.Collection findOther(java.lang.String param1, java.lang.Integer param2) throws javax.ejb.FinderException, java.rmi.RemoteException; org.xdoclet.testapp.ejb.interfaces.AccountRemote findWithHighestBalance() throws javax.ejb.FinderException, java.rmi.RemoteException; org.xdoclet.testapp.ejb.interfaces.AccountRemote findByPrimaryKey(java.lang.String pk) throws javax.ejb.FinderException, java.rmi.RemoteException; } --- NEW FILE: TransferEndPoint.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela * @version $Revision: 1.1 $ */ public interface TransferEndPoint extends java.rmi.Remote { void transferAmount(java.lang.String srcAcc, java.lang.String dstAcc, double amount) throws javax.naming.NamingException, javax.ejb.FinderException, java.rmi.RemoteException; } --- NEW FILE: AccountLocal.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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(); java.lang.String getNumber() throws org.xdoclet.testapp.ejb.interfaces.NoNumberException; java.lang.String getType(); } --- NEW FILE: NoNumberException.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.interfaces; /** * @author Aslak Hellesøy * @version $Revision: 1.1 $ */ public class NoNumberException extends Exception { // empty } --- NEW FILE: AccountRemote.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 * @author Diogo Quintela * @version $Revision: 1.1 $ */ public interface AccountRemote extends org.xdoclet.testapp.ejb.interfaces.Dummy, javax.ejb.EJBObject { java.util.Collection getOwners() throws java.rmi.RemoteException; java.lang.String getNumber() throws org.xdoclet.testapp.ejb.interfaces.NoNumberException, java.rmi.RemoteException; java.lang.String getType() throws java.rmi.RemoteException; } --- NEW FILE: TransferRemoteHome.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela * @version $Revision: 1.1 $ */ public interface TransferRemoteHome extends javax.ejb.EJBHome { public static final String COMP_NAME="java:comp/env/ejb/TransferRemote"; public static final String JNDI_NAME="jndi.TransferRemote"; org.xdoclet.testapp.ejb.interfaces.TransferRemote create() throws javax.ejb.CreateException, java.rmi.RemoteException; void foo() throws java.rmi.RemoteException; } --- NEW FILE: TransferLocalHome.java --- /* * Copyright (c) 2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.testapp.ejb.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 Diogo Quintela * @version $Revision: 1.1 $ */ public interface TransferLocalHome extends javax.ejb.EJBLocalHome { public static final String COMP_NAME = "java:comp/env/ejb/TransferLocal"; public static final String JNDI_NAME = "jndi.TransferLocal"; org.xdoclet.testapp.ejb.interfaces.TransferLocal create() throws javax.ejb.CreateException; void otherFoo(); } |