maguro      2004/09/04 17:35:49

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

  These are not really info messages.
  
  Revision  Changes    Path
  1.10      +14 -14    
openejb/modules/core/src/java/org/openejb/server/ejbd/EjbRequestHandler.java
  
  Index: EjbRequestHandler.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/server/ejbd/EjbRequestHandler.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- EjbRequestHandler.java    30 Jul 2004 19:03:46 -0000      1.9
  +++ EjbRequestHandler.java    4 Sep 2004 21:35:49 -0000       1.10
  @@ -146,7 +146,7 @@
                   ContextManager.setNextCaller(subject);
               }
   
  -            log.warn("setting cl=" + cl + " for " + container.getContainerID());
  +            log.debug("setting cl=" + cl + " for " + container.getContainerID());
           } catch (RemoteException e) {
               replyWithFatalError
                       (out, e, "No such deployment");
  @@ -243,7 +243,7 @@
               replyWithFatalError(out, t, "Unknown error in container");
               return;
           } finally {
  -            log.info("EJB RESPONSE: " + res);
  +            log.debug("EJB RESPONSE: " + res);
               try {
                   res.writeExternal(out);
               } catch (java.io.IOException ie) {
  @@ -329,29 +329,29 @@
        * <p/>
        * Some finder methods (such as ejbFindByPrimaryKey) are designed to return
        * at most one entity object. For these single-object finders, the result type
  -     * of the find<METHOD>(...)method defined in the entity bean�s home interface
  -     * is the entity bean�s remote interface. The result type of the corresponding
  -     * ejbFind<METHOD>(...) method defined in the entity�s implementation class is
  -     * the entity bean�s primary key type.
  +     * of the find<METHOD>(...)method defined in the entity bean�s home interface
  +     * is the entity bean�s remote interface. The result type of the corresponding
  +     * ejbFind<METHOD>(...) method defined in the entity�s implementation class is
  +     * the entity bean�s primary key type.
        * <p/>
        * 9.1.8.2 Multi-object finders
        * <p/>
        * Some finder methods are designed to return multiple entity objects. For
        * these multi-object finders, the result type of the find<METHOD>(...)method
  -     * defined in the entity bean�s home interface is a col-lection of objects
  -     * implementing the entity bean�s remote interface. The result type of the
  +     * defined in the entity bean�s home interface is a col-lection of objects
  +     * implementing the entity bean�s remote interface. The result type of the
        * corresponding ejbFind<METHOD>(...) implementation method defined in the
  -     * entity bean�s implementation class is a collection of objects of the entity
  -     * bean�s primary key type.
  +     * entity bean�s implementation class is a collection of objects of the entity
  +     * bean�s primary key type.
        * <p/>
        * The Bean Provider can choose two types to define a collection type for a 
finder:
        * <p/>
  -     * � the JDK� 1.1 java.util.Enumeration interface
  -     * � the Java� 2 java.util.Collection interface
  +     * � the JDK� 1.1 java.util.Enumeration interface
  +     * � the Java� 2 java.util.Collection interface
        * <p/>
        * A Bean Provider that wants to ensure that the entity bean is compatible
        * with containers and clients based on JDK TM 1.1 software must use the
  -     * java.util.Enumeration interface for the finder�s result type.
  +     * java.util.Enumeration interface for the finder�s result type.
        */
   
       protected void doEjbHome_FIND(EJBRequest req, EJBResponse res) throws Throwable 
{
  
  
  

Reply via email to