For those who have moved over to Google's official version of Firebase (As of May 29, 2016), you can use @Exclude instead of @JsonIgnore or @JsonProperty. Here is the link to their document.
Example:
public class dataPacket{
public String data;
...
@Exclude
public String getData(){return data;}
}