jlaskowski    2005/06/19 18:40:31

  Modified:    modules/core/src/java/org/openejb/core/ivm
                        EjbHomeProxyHandler.java EjbObjectProxyHandler.java
                        IntraVmArtifact.java IntraVmCopyMonitor.java
                        IntraVmHandle.java IntraVmMetaData.java
                        IntraVmProxy.java package.html
  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 -4      
openejb1/modules/core/src/java/org/openejb/core/ivm/EjbHomeProxyHandler.java
  
  Index: EjbHomeProxyHandler.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/EjbHomeProxyHandler.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- EjbHomeProxyHandler.java  26 Aug 2004 07:20:26 -0000      1.3
  +++ EjbHomeProxyHandler.java  19 Jun 2005 22:40:31 -0000      1.4
  @@ -353,7 +353,7 @@
        * serialized to the stream in place of the IntraVmProxy.
        * 
        * @param proxy
  -     * @return 
  +     * @return Object 
        * @exception ObjectStreamException
        */
       protected Object _writeReplace(Object proxy) throws 
ObjectStreamException{
  @@ -406,7 +406,7 @@
        * @return Returns null
        * @exception Throwable
        * @see javax.ejb.EJBHome
  -     * @see javax.ejb.EJBHome#remove
  +     * @see javax.ejb.EJBHome#remove(javax.ejb.Handle)
        */
       protected Object removeWithHandle(Method method, Object[] args, Object 
proxy) throws Throwable{
   
  @@ -457,7 +457,7 @@
        * @return Returns null
        * @exception Throwable
        * @see javax.ejb.EJBHome
  -     * @see javax.ejb.EJBHome#remove
  +     * @see javax.ejb.EJBHome#remove(javax.ejb.Handle)
        */
       protected abstract Object removeByPrimaryKey(Method method, Object[] 
args, Object proxy) throws Throwable;
   }
  
  
  
  1.3       +2 -2      
openejb1/modules/core/src/java/org/openejb/core/ivm/EjbObjectProxyHandler.java
  
  Index: EjbObjectProxyHandler.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/EjbObjectProxyHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- EjbObjectProxyHandler.java        26 Aug 2004 07:20:26 -0000      1.2
  +++ EjbObjectProxyHandler.java        19 Jun 2005 22:40:31 -0000      1.3
  @@ -225,7 +225,7 @@
        * serialized to the stream in place of the IntraVmProxy.
        * 
        * @param proxy
  -     * @return 
  +     * @return Object 
        * @exception ObjectStreamException
        */
       protected Object _writeReplace(Object proxy) throws 
ObjectStreamException{
  
  
  
  1.2       +2 -2      
openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmArtifact.java
  
  Index: IntraVmArtifact.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmArtifact.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IntraVmArtifact.java      26 Mar 2004 21:42:29 -0000      1.1
  +++ IntraVmArtifact.java      19 Jun 2005 22:40:31 -0000      1.2
  @@ -210,7 +210,7 @@
        * In the readResolve method, the original object instance is retrieved
        * from the List and returned instead.
        * 
  -     * @return 
  +     * @return Object 
        * @exception ObjectStreamException
        */
       private Object readResolve() throws ObjectStreamException{
  
  
  
  1.2       +5 -5      
openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmCopyMonitor.java
  
  Index: IntraVmCopyMonitor.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmCopyMonitor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IntraVmCopyMonitor.java   26 Mar 2004 21:42:29 -0000      1.1
  +++ IntraVmCopyMonitor.java   19 Jun 2005 22:40:31 -0000      1.2
  @@ -154,7 +154,7 @@
        * If the IntraVmCopyMonitor has not already been 
        * create, it is instantiated.
        * 
  -     * @return 
  +     * @return IntraVmCopyMonitor
        */
       static IntraVmCopyMonitor getMonitor( ){
           IntraVmCopyMonitor monitor = (IntraVmCopyMonitor)threadStorage.get();
  @@ -213,7 +213,7 @@
        * Returns true if the current operation is an
        * IntraVM copy.
        * 
  -     * @return 
  +     * @return boolean
        */
       public static boolean isIntraVmCopyOperation(){
           IntraVmCopyMonitor monitor = getMonitor();
  @@ -226,7 +226,7 @@
        * Returns true if the current operation is the
        * passivation of a stateful session bean.
        * 
  -     * @return 
  +     * @return boolean 
        */
       public static boolean isStatefulPassivationOperation(){
           IntraVmCopyMonitor monitor = getMonitor();
  
  
  
  1.2       +2 -2      
openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmHandle.java
  
  Index: IntraVmHandle.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmHandle.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IntraVmHandle.java        26 Mar 2004 21:42:29 -0000      1.1
  +++ IntraVmHandle.java        19 Jun 2005 22:40:31 -0000      1.2
  @@ -126,7 +126,7 @@
        * If the handle is serialized outside the core container system, we
        * allow the application server to handle it.
        * 
  -     * @return 
  +     * @return Object 
        * @exception ObjectStreamException
        */
       protected Object writeReplace() throws ObjectStreamException{
  
  
  
  1.2       +5 -5      
openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmMetaData.java
  
  Index: IntraVmMetaData.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmMetaData.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IntraVmMetaData.java      26 Mar 2004 21:42:29 -0000      1.1
  +++ IntraVmMetaData.java      19 Jun 2005 22:40:31 -0000      1.2
  @@ -193,7 +193,7 @@
        * java.lang.RuntimeException.  
        * UnsupportedOperationException is a java.lang.RuntimeException
        * 
  -     * @return 
  +     * @return Class
        */
       public Class getPrimaryKeyClass( ) {
           if ( type == ENTITY )
  @@ -206,7 +206,7 @@
        * Returns true if this MetaData represents a bean 
        * deployment of type SessionBean.
        * 
  -     * @return 
  +     * @return boolean
        */
       public boolean isSession( ) {
           return(type == STATEFUL || type ==STATELESS);
  @@ -216,7 +216,7 @@
        * Returns true if this MetaData represents a bean
        * deployment that is a stateless SessionBean.
        * 
  -     * @return 
  +     * @return boolean
        */
       public boolean isStatelessSession() {
           return type == STATELESS;
  @@ -250,7 +250,7 @@
        * If the meta data is serialized outside the core container system,
        * we allow the application server to handle it.
        * 
  -     * @return 
  +     * @return Object 
        * @exception ObjectStreamException
        */
       protected Object writeReplace() throws ObjectStreamException{
  
  
  
  1.2       +1 -1      
openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmProxy.java
  
  Index: IntraVmProxy.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/IntraVmProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IntraVmProxy.java 26 Mar 2004 21:42:29 -0000      1.1
  +++ IntraVmProxy.java 19 Jun 2005 22:40:31 -0000      1.2
  @@ -21,7 +21,7 @@
        * If the proxy is serialized outside the core container system,
        * we allow the application server to handle it.
        * 
  -     * @return 
  +     * @return Object 
        * @exception ObjectStreamException
        */
       public Object writeReplace() throws ObjectStreamException;
  
  
  
  1.3       +3 -4      
openejb1/modules/core/src/java/org/openejb/core/ivm/package.html
  
  Index: package.html
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/ivm/package.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- package.html      8 Jul 2004 11:55:24 -0000       1.2
  +++ package.html      19 Jun 2005 22:40:31 -0000      1.3
  @@ -93,7 +93,7 @@
   <OL TYPE="I">
   <B><LI><FONT POINT-SIZE=11>The Reference Implementation (RI) 
Server</font></B>
       <OL type="A">
  -    <B><LI> [EMAIL PROTECTED] org.openejb.ri.server.EjbProxyHandler}</B>
  +    <B><LI> org.openejb.ri.server.EjbProxyHandler</B>
           <UL type="circle">
           <LI> Serialized and sent along with a Proxy to serve as an EJBHome 
or EJBObject to a remote client/bean in the network.
           <LI> Handles method invocations by serializing them and sending them 
over the network to the Ri Server.
  @@ -133,8 +133,7 @@
   
   <!-- Put @see and @since tags down here. -->
   @see org.openejb.core.ContainerSystem
  [EMAIL PROTECTED] org.openejb.core.ContainerManager
  [EMAIL PROTECTED] org.openejb.core.Container
  [EMAIL PROTECTED] org.openejb.Container
   @see org.openejb.core.DeploymentInfo
   </body>
   </html>
  
  
  

Reply via email to