You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomee.apache.org by David Blevins <da...@visi.com> on 2007/12/01 05:04:53 UTC

Re: svn commit: r599690 - in /openejb/trunk/openejb3/server: openejb-client/src/main/java/org/apache/openejb/client/ openejb-ejbd/src/main/java/org/apache/openejb/server/ejbd/ openejb-ejbd/src/test/java/org/apache/openejb/

On Nov 29, 2007, at 11:35 PM, Jacek Laskowski wrote:

> On Nov 30, 2007 4:26 AM,  <db...@apache.org> wrote:
>> Author: dblevins
>> Date: Thu Nov 29 19:26:28 2007
>> New Revision: 599690
>>
>> URL: http://svn.apache.org/viewvc?rev=599690&view=rev
>> Log:
>> OPENEJB-668: Client JNDI Context.list method support
>
>>     public NamingEnumeration listBindings(String name) throws  
>> NamingException {
>> -        throw new OperationNotSupportedException("TODO: Needs to  
>> be implemented");
>> +        throw new OperationNotSupportedException("Use list(String)  
>> instead");
>
> Hey Dave,
>
> Why didn't you decide to put a call to list(String) as a body of
> listBindings(String name)?

They return different things.  I just took a crack at implementing  
listBindings and it seems to be working, though it might not be the  
best implementation possible.

-David