RE: Developer Guide (was Re: getEntityAsObject()?)

2007-09-21 Thread Jerome Louvel
Hi Marc, > It sounds like I should do an effort to make you stick to Daisy :-) > (as in even for the designer/development discussions ) I think that handling our community wiki, especially the developer guide is a great opportunity to discover more deeply Daisy. If in the future, Daisy proposes

Different Guard on different method on Resource

2007-09-21 Thread Sebastien PLISSON
Hi, Do you it would be good to be able to define a different guard on a resource depending on the method(GET, PUT ,etc) used to access it ? And how ? Thanks Sebastien

Re: Different Guard on different method on Resource

2007-09-21 Thread Sebastien PLISSON
Sebastien PLISSON gmail.com> writes: > > Hi, > > Do you it would be good to be able to define a different guard on a > resource depending on the method(GET, PUT ,etc) used to access it ? > > And how ? > > Thanks > Sebastien > > It is okay I found : http://article.gmane.org/gmane.comp.java

Re: Unchecked exceptions in Resource constructors

2007-09-21 Thread Vincent
Hi Jerome, > } catch (InvocationTargetException e) { > if (e.getCause() instanceof Error) { > throw (Error) e.getCause(); > } else { > getLogger() [...] > } I spoke too fast, we should also consider

Re: Unchecked exceptions in Resource constructors

2007-09-21 Thread Vincent
Hi Jerome, > > } catch (InvocationTargetException e) { > > if (e.getCause() instanceof Error) { > > throw (Error) e.getCause(); > > } else { > > getLogger() [...] > > } > I spoke too fast, we shou