Uploaded image for project: 'Tools (JBoss Tools)'
  1. Tools (JBoss Tools)
  2. JBIDE-17976

Problem markers are not removed on related Parameter Aggregators

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 4.2.0.CR1
    • 4.2.0.Beta3
    • webservices
    • None

    Description

      Let's have those 2 classes:

      @Path("/rest")
      public class RestService {
      
      	@POST
      	@Path("{id}")
      	public void post(@BeanParam BeanClass bean) {
      		
      	}	
      }
      

      and

      public class BeanClass {
      	
      	@PathParam("id") 
      	private Integer id;
      	
      }
      

      if the users changes @Path("{id}") to @Path("{i}") in the RestService, a problem marker will be set on @PathParam("id") in BeanClass, which is fine.

      If the user changes @Path("{i}") back to @Path("{id}"), the problem marker is not removed

      Attachments

        Activity

          People

            xcoulon@redhat.com Xavier Coulon
            xcoulon@redhat.com Xavier Coulon
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: