You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by Aaron Mulder <am...@alumni.princeton.edu> on 2004/10/14 17:42:48 UTC

Missing CMP1Bridge

	The build is broken on account of a missing class called
CMP1Bridge (in OpenEJB).  It looks like Dain checked in the offending file
that depends on CMP1Bridge -- Dain, perhaps you forgot to add the new
file?

	Gianny has a workaround to get it to compile, which is to create
the file like this:

public class CMP1Bridge {
    public CMP1Bridge(Class clazz, LinkedHashMap hashMap) {}
    public void loadCacheRow(CMPInstanceContext ctx, CacheRow row) {}
    public void loadEntityBean(CacheRow row, CMPInstanceContext ctx) {}
}

Aaron

Re: Missing CMP1Bridge

Posted by Dain Sundstrom <ds...@gluecode.com>.
Sorry about that.  It is checked in now.

-dain

--
Dain Sundstrom
Chief Architect
Gluecode Software
310.536.8355, ext. 26

On Oct 14, 2004, at 8:42 AM, Aaron Mulder wrote:

> 	The build is broken on account of a missing class called
> CMP1Bridge (in OpenEJB).  It looks like Dain checked in the offending 
> file
> that depends on CMP1Bridge -- Dain, perhaps you forgot to add the new
> file?
>
> 	Gianny has a workaround to get it to compile, which is to create
> the file like this:
>
> public class CMP1Bridge {
>     public CMP1Bridge(Class clazz, LinkedHashMap hashMap) {}
>     public void loadCacheRow(CMPInstanceContext ctx, CacheRow row) {}
>     public void loadEntityBean(CacheRow row, CMPInstanceContext ctx) {}
> }
>
> Aaron