[
https://issues.jboss.org/browse/JBIDE-15881?page=com.atlassian.jira.plugi...
]
Xavier Coulon updated JBIDE-15881:
----------------------------------
Description:
Take the following classes:
{code}
@Path("/products")
public class ProductResourceLocator {
@QueryParam("foo1")
private String foo2;
@Path("/{productType}")
public Object getProductResourceLocator() {
return new BookResource();
}
}
{code}
and
{code}
@Produces({ MediaType.APPLICATION_XML, "application/json" })
public class BookResource {
@GET
@Path("/{id}")
@Produces({ "application/xml", "application/json" })
public Book getProduct(@PathParam("id") Integer id) {
return null;
}
}
{code}
ASSERT: the URL Template for the Endpoint should be something like
{code}
/products/{productType}/{id}?foo1={String}
{code}
was:
Take the following classes:
{code}
@Path("/products")
public class ProductResourceLocator {
@QueryParam("foo1")
private String foo2;
@Path("/{productType}")
public Object getProductResourceLocator() {
return new BookResource();
}
}
{code}
and
{code}
@Produces({ MediaType.APPLICATION_XML, "application/json" })
public class BookResource {
@GET
@Path("/{id}")
@Produces({ "application/xml", "application/json" })
public Book getProduct(@PathParam("id") Integer id) {
return null;
}
}
{code}
ASSERT: the URL Template for the Endpoint should be something like
/products/{productType}/{id}?foo1={String}
Annotated field with QueryParam missing in URL Endpoint template
----------------------------------------------------------------
Key: JBIDE-15881
URL:
https://issues.jboss.org/browse/JBIDE-15881
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: webservices
Affects Versions: 4.1.0.Final
Reporter: Xavier Coulon
Assignee: Xavier Coulon
Fix For: 4.2.x
Take the following classes:
{code}
@Path("/products")
public class ProductResourceLocator {
@QueryParam("foo1")
private String foo2;
@Path("/{productType}")
public Object getProductResourceLocator() {
return new BookResource();
}
}
{code}
and
{code}
@Produces({ MediaType.APPLICATION_XML, "application/json" })
public class BookResource {
@GET
@Path("/{id}")
@Produces({ "application/xml", "application/json" })
public Book getProduct(@PathParam("id") Integer id) {
return null;
}
}
{code}
ASSERT: the URL Template for the Endpoint should be something like
{code}
/products/{productType}/{id}?foo1={String}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira