jlaskowski    2005/06/19 18:40:32

  Modified:    modules/core/src/java/org/openejb/server
                        ServerFederation.java ServiceManager.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       +7 -7      
openejb1/modules/core/src/java/org/openejb/server/ServerFederation.java
  
  Index: ServerFederation.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/server/ServerFederation.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServerFederation.java     16 Jun 2005 22:29:52 -0000      1.3
  +++ ServerFederation.java     19 Jun 2005 22:40:32 -0000      1.4
  @@ -84,7 +84,7 @@
        * 
        * @param proxyInfo A proxy info instance describing the deployment
        * 
  -     * @return 
  +     * @return Handle
        */
       public Handle getHandle(ProxyInfo proxyInfo) {
           return getApplicationServer().getHandle(proxyInfo);
  @@ -96,7 +96,7 @@
        * 
        * @param proxyInfo A proxy info instance describing the deployment
        * 
  -     * @return 
  +     * @return EJBMetaData
        */
       public EJBMetaData getEJBMetaData(ProxyInfo proxyInfo) {
           return getApplicationServer().getEJBMetaData(proxyInfo);
  @@ -108,7 +108,7 @@
        * 
        * @param proxyInfo A proxy info instance describing the deployment
        * 
  -     * @return 
  +     * @return HomeHandle
        */
       public HomeHandle getHomeHandle(ProxyInfo proxyInfo) {
           return getApplicationServer().getHomeHandle(proxyInfo);
  @@ -120,7 +120,7 @@
        * 
        * @param proxyInfo A proxy info instance describing the deployment
        * 
  -     * @return 
  +     * @return EJBObject
        */
       public EJBObject getEJBObject(ProxyInfo proxyInfo) {
           return getApplicationServer().getEJBObject(proxyInfo);
  @@ -132,7 +132,7 @@
        * 
        * @param proxyInfo A proxy info instance describing the deployment
        * 
  -     * @return 
  +     * @return EJBHome
        */
       public EJBHome getEJBHome(ProxyInfo proxyInfo) {
           return getApplicationServer().getEJBHome(proxyInfo);
  @@ -157,7 +157,7 @@
        * Gets the ApplicationServer implementation associates
        * with this thread.
        * 
  -     * @return 
  +     * @return ApplicationServer
        */
       public static ApplicationServer getApplicationServer( ) {
           ApplicationServer server = (ApplicationServer)threadStorage.get();
  
  
  
  1.4       +3 -3      
openejb1/modules/core/src/java/org/openejb/server/ServiceManager.java
  
  Index: ServiceManager.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/server/ServiceManager.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServiceManager.java       16 Jun 2005 22:29:52 -0000      1.3
  +++ ServiceManager.java       19 Jun 2005 22:40:32 -0000      1.4
  @@ -285,7 +285,7 @@
        * 
        * @param className
        * 
  -     * @return 
  +     * @return Class
        * @exception ServiceException
        */
       private Class loadClass(String className) throws ServiceException{
  @@ -323,7 +323,7 @@
        * 
        * @param clazz
        * 
  -     * @return 
  +     * @return ServerService 
        * @exception ServiceException
        */
       private ServerService instantiateService(Class clazz) throws 
ServiceException{
  
  
  

Reply via email to