jlaskowski    2005/06/19 18:40:33

  Modified:    modules/core/src/java/org/openejb/server/ejbd
                        CallContext.java ClientObjectFactory.java
  Log:

  A step towards cutting the 1.0 release:
    o openejb:release goal to cut a release
    o polishing the sources so that javadoc is built without any errors or 
warnings
    o Add javadoc to release in openejb:release
  
  Revision  Changes    Path
  1.4       +4 -11     
openejb1/modules/core/src/java/org/openejb/server/ejbd/CallContext.java
  
  Index: CallContext.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/server/ejbd/CallContext.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CallContext.java  16 Jun 2005 22:29:52 -0000      1.3
  +++ CallContext.java  19 Jun 2005 22:40:33 -0000      1.4
  @@ -99,15 +99,8 @@
   
   
   /**
  -
  - * TODO: Add comment
  -
  - *
  -
    * @author <a href="mailto:[EMAIL PROTECTED]">David Blevins</a>
  -
    */
  -
   public class CallContext {
   
   
  @@ -176,7 +169,7 @@
   
        *
   
  -     * @return
  +     * @return DeploymentInfo
   
        */
   
  @@ -212,7 +205,7 @@
   
        *
   
  -     * @return
  +     * @return EJBRequest
   
        */
   
  @@ -278,7 +271,7 @@
   
        *
   
  -     * @return
  +     * @return CallContext
   
        */
   
  
  
  
  1.3       +10 -10    
openejb1/modules/core/src/java/org/openejb/server/ejbd/ClientObjectFactory.java
  
  Index: ClientObjectFactory.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/server/ejbd/ClientObjectFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ClientObjectFactory.java  16 Jun 2005 22:29:52 -0000      1.2
  +++ ClientObjectFactory.java  19 Jun 2005 22:40:33 -0000      1.3
  @@ -90,7 +90,7 @@
        * 
        * @param info
        * 
  -     * @return 
  +     * @return Handle
        */
       public javax.ejb.Handle getHandle(ProxyInfo info) {
           CallContext call = CallContext.getCallContext();
  @@ -103,7 +103,7 @@
        * 
        * @param info
        * 
  -     * @return 
  +     * @return HomeHandle
        */
       public javax.ejb.HomeHandle getHomeHandle(ProxyInfo info) {
           CallContext call = CallContext.getCallContext();
  @@ -116,7 +116,7 @@
        * 
        * @param info
        * 
  -     * @return 
  +     * @return EJBObject
        */
       public javax.ejb.EJBObject getEJBObject(ProxyInfo info) {
           CallContext call = CallContext.getCallContext();
  @@ -129,7 +129,7 @@
        * 
        * @param info
        * 
  -     * @return 
  +     * @return EJBHome
        */
       public javax.ejb.EJBHome getEJBHome(ProxyInfo info) {
           CallContext call = CallContext.getCallContext();
  @@ -143,7 +143,7 @@
        * @param call
        * @param info
        * 
  -     * @return 
  +     * @return EJBMetaData
        * @see org.openejb.client.EJBMetaDataImpl
        */
       protected javax.ejb.EJBMetaData _getEJBMetaData(CallContext call, 
ProxyInfo info) {
  @@ -167,7 +167,7 @@
        * @param call
        * @param info
        * 
  -     * @return 
  +     * @return Handle
        * @see org.openejb.client.EJBObjectHandle
        */
       protected javax.ejb.Handle _getHandle(CallContext call, ProxyInfo info) {
  @@ -202,7 +202,7 @@
        * @param call
        * @param info
        * 
  -     * @return 
  +     * @return HomeHandle
        * @see org.openejb.client.EJBHomeHandle
        */
       protected javax.ejb.HomeHandle _getHomeHandle(CallContext call, 
ProxyInfo info) {
  @@ -236,7 +236,7 @@
        * @param call
        * @param info
        * 
  -     * @return 
  +     * @return EJBObject
        * @see org.openejb.client.EJBObjectHandler
        */
       protected javax.ejb.EJBObject _getEJBObject(CallContext call, ProxyInfo 
info) {
  @@ -271,7 +271,7 @@
        * @param call
        * @param info
        * 
  -     * @return 
  +     * @return EJBHome 
        * @see org.openejb.client.EJBHomeHandler
        */
       protected javax.ejb.EJBHome _getEJBHome(CallContext call, ProxyInfo 
info) {
  
  
  

Reply via email to