dain        2005/12/01 03:34:53

  Modified:    modules/core/src/test/org/openejb/server/httpd
                        HttpServerTest.java
  Log:

  Changed gbean info generation to create a static gbean info
  
  Revision  Changes    Path
  1.11      +2 -2      
openejb/modules/core/src/test/org/openejb/server/httpd/HttpServerTest.java
  
  Index: HttpServerTest.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/test/org/openejb/server/httpd/HttpServerTest.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HttpServerTest.java       6 Sep 2005 08:09:47 -0000       1.10
  +++ HttpServerTest.java       1 Dec 2005 08:34:53 -0000       1.11
  @@ -229,7 +229,7 @@
           public static final GBeanInfo GBEAN_INFO;
   
           static {
  -            GBeanInfoBuilder infoFactory = new 
GBeanInfoBuilder(TestHttpListener.class);
  +            GBeanInfoBuilder infoFactory = 
GBeanInfoBuilder.createStatic(TestHttpListener.class);
               infoFactory.addOperation("onMessage", new 
Class[]{HttpRequest.class, HttpResponse.class});
               infoFactory.setConstructor(new String[]{});
   
  
  
  

Reply via email to