-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
Doesn't recognize the Long param and show a String body param.
Interface :
public interface RepositoryService<T extends AbstractModel> {
@Path("/{idEntity}")
@DELETE
@ApiOperation(value = "Logical delete an entity",
notes = "Must provide an id for the entity to delete")
Response deleteEntity(@PathParam("idEntity") Long idEntity);
}Implementation :
@Path("catalogueService")
@Api(tags = "Catalogue Service WS")
public class CatalogueServiceImpl implements RepositoryService{
@Override
public Response deleteEntity(Long idEntity) {
....
}
}Any ideas ?
Metadata
Metadata
Assignees
Labels
No labels