com.fasterxml.jackson.annotation.JsonTypeId Java Examples
The following examples show how to use
com.fasterxml.jackson.annotation.JsonTypeId.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JobConfiguration.java From dhis2-core with BSD 3-Clause "New" or "Revised" License | 5 votes |
@JacksonXmlProperty @JsonProperty @JsonTypeId public JobType getJobType() { return jobType; }
Example #2
Source File: VisibleTypeIdTester.java From gwt-jackson with Apache License 2.0 | 4 votes |
@JsonTypeId public String getType() { return "SomeType"; }
Example #3
Source File: VisibleTypeIdTester.java From gwt-jackson with Apache License 2.0 | 4 votes |
@JsonTypeId public String getType() { return "SomeType"; }
Example #4
Source File: VisibleTypeIdTester.java From gwt-jackson with Apache License 2.0 | 4 votes |
@JsonTypeId public String getType2() { return "type2"; }
Example #5
Source File: VisibleTypeIdTester.java From gwt-jackson with Apache License 2.0 | 4 votes |
@JsonTypeId public abstract String getName();