org.codehaus.jackson.annotate.JsonAnyGetter Java Examples

The following examples show how to use org.codehaus.jackson.annotate.JsonAnyGetter. 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: ProductName.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #2
Source File: StatsSnapshot.java    From ambry with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, StatsSnapshot> getSubMap() {
  return subMap;
}
 
Example #3
Source File: AbstractEntity.java    From usergrid with Apache License 2.0 4 votes vote down vote up
@Override
@JsonAnyGetter
public Map<String, Object> getDynamicProperties() {
    return dynamic_properties;
}
 
Example #4
Source File: SubjectDetails.java    From bintray-client-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> other() {
    return other;
}
 
Example #5
Source File: IndexableMailMessage.java    From elasticsearch-imap with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String,String> getSelectedHeaders() {
    return selectedHeaders;
}
 
Example #6
Source File: BaseJson.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@com.fasterxml.jackson.annotation.JsonAnyGetter
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #7
Source File: ServiceOwner.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #8
Source File: Name.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #9
Source File: ServiceProvider.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #10
Source File: ServiceOwnerName.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #11
Source File: ServiceOffered.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #12
Source File: Support.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #13
Source File: JacksonAdditionalProperties.java    From raml-java-tools with Apache License 2.0 4 votes vote down vote up
public JacksonAdditionalProperties(){
    super(JsonAnyGetter.class, JsonAnySetter.class, JsonIgnore.class);
}
 
Example #14
Source File: NamedContext.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #15
Source File: Contact.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #16
Source File: ServiceProviderName.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #17
Source File: TechnicalDescription.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #18
Source File: Vendor.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #19
Source File: Description.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #20
Source File: ProductFamily.java    From basiclti-util-java with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
    return this.additionalProperties;
}
 
Example #21
Source File: IssueFields.java    From jira-rest-client with Apache License 2.0 4 votes vote down vote up
@JsonAnyGetter
public Map<String,Object> getCustomfield(){
	return this.customfield; 
}
 
Example #22
Source File: ServiceRecord.java    From big-c with Apache License 2.0 2 votes vote down vote up
/**
 * The map of "other" attributes set when parsing. These
 * are not included in the JSON value of this record when it
 * is generated.
 * @return a map of any unknown attributes in the deserialized JSON.
 */
@JsonAnyGetter
public Map<String, String> attributes() {
  return attributes;
}
 
Example #23
Source File: ServiceRecord.java    From hadoop with Apache License 2.0 2 votes vote down vote up
/**
 * The map of "other" attributes set when parsing. These
 * are not included in the JSON value of this record when it
 * is generated.
 * @return a map of any unknown attributes in the deserialized JSON.
 */
@JsonAnyGetter
public Map<String, String> attributes() {
  return attributes;
}