Hi,
Consider this JAXRS resource :
@Path("/")
public class Resource {
@GET
@Produces("text/plain")
public String getValue() {return "plain value";}
}
How to have such a plain representation described in WADL ?
Perhaps
<representation>
<param style="plain"/>
</representation>
?
thanks, Sergey