Description
This is to change
org.apache.htrace.fasterxml.jackson.annotation.JsonIgnore
org.apache.htrace.fasterxml.jackson.annotation.JsonIgnoreProperties
to
org.codehaus.jackson.annotate.JsonIgnore
org.codehaus.jackson.annotate.JsonIgnoreProperties, since org.codehaus.jackson.map.ObjectMapper does not recognize the former when we mark get/set accessors as @JsonIgnore. This will cause UnrecognizedPropertyException for newly added accessors while doing Json parsing using codehaus Jackson ObjectMapper.