|
From: Bill B. <bb...@re...> - 2008-10-24 16:20:11
|
There's is HeaderDelegate in the specification. I could make sure that
is used for all String parameters.
Michael Brackx wrote:
> Hi,
>
> It would be nice to have some sort of custom parameter unmarshalling.
> Currently parameter types can be String, primitive, or a class that
> has a String constructor or static valueOf(String) method.
> Some use cases:
> - injecting interfaces
> - injecting Enums (they already have a static valueOf(String) method)
> - injecting thirdparty classes
> - injecting factory created objects
>
> example:
>
> @GET
> @Path("/book/{isbn}")
> public String getBook(@PathParm(value = "isbn", provider =
> ISBNFactory.class) ISBN id) {
> ...
> }
>
> @Provider
> public class ISBNFactory {
> @ProviderMethod
> public ISBN create(String value) {
> return new ISBNImpl(value);
> }
> }
>
> The @ProviderMethod could be left out if there is only one matching method.
> Or a new interface could be used, to be more in line with ExceptionMapper.
>
> I realize the spec is final, but someday the will be a 1.1 or 2.0 :)
> Any comments?
>
> Michael Brackx
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> Resteasy-developers mailing list
> Res...@li...
> https://lists.sourceforge.net/lists/listinfo/resteasy-developers
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com
|