com.fasterxml.jackson.annotation.JsonAnyGetter Java Examples
The following examples show how to use
com.fasterxml.jackson.annotation.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: AbstractDynamicBean.java From Bats with Apache License 2.0 | 5 votes |
@JsonAnyGetter public Map<String,JsonNode> _anyGetter() { Map<String, JsonNode> unknowns = new HashMap<String, JsonNode>(); for(Iterator<Entry<String, JsonNode>> i = objectNode.fields(); i.hasNext(); ){ Entry<String, JsonNode> e = i.next(); unknowns.put(e.getKey(), e.getValue()); } return unknowns; }
Example #2
Source File: Swagger.java From spark-swagger with Apache License 2.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getVendorExtensions() { return vendorExtensions; }
Example #3
Source File: Html.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #4
Source File: JSONPlugin.java From TrackRay with GNU General Public License v3.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #5
Source File: GithubPullRequest.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #6
Source File: Links.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #7
Source File: SharedWithGroup.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #8
Source File: WitObject.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #9
Source File: WitEntity.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #10
Source File: ExternalDocs.java From spark-swagger with Apache License 2.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getVendorExtensions() { return vendorExtensions; }
Example #11
Source File: Namespace.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #12
Source File: Label.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #13
Source File: Flow.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #14
Source File: GitLabRepository.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #15
Source File: Location.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #16
Source File: PermissionSchemeResponse.java From ods-provisioning-app with Apache License 2.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #17
Source File: Operation.java From spark-swagger with Apache License 2.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getVendorExtensions() { return vendorExtensions; }
Example #18
Source File: DiffRefs.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #19
Source File: AdditionalPropertiesAnyType.java From openapi-generator with Apache License 2.0 | 4 votes |
/** * Return the additional (undeclared) property. */ @JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return additionalProperties; }
Example #20
Source File: AbstractSecuritySchemeDefinition.java From spark-swagger with Apache License 2.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getVendorExtensions() { return vendorExtensions; }
Example #21
Source File: AdditionalPropertiesNumber.java From openapi-generator with Apache License 2.0 | 4 votes |
/** * Return the additional (undeclared) property. */ @JsonAnyGetter public Map<String, BigDecimal> getAdditionalProperties() { return additionalProperties; }
Example #22
Source File: Plan.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #23
Source File: AdditionalPropertiesInteger.java From openapi-generator with Apache License 2.0 | 4 votes |
/** * Return the additional (undeclared) property. */ @JsonAnyGetter public Map<String, Integer> getAdditionalProperties() { return additionalProperties; }
Example #24
Source File: AdditionalPropertiesBoolean.java From openapi-generator with Apache License 2.0 | 4 votes |
/** * Return the additional (undeclared) property. */ @JsonAnyGetter public Map<String, Boolean> getAdditionalProperties() { return additionalProperties; }
Example #25
Source File: Mammal.java From openapi-generator with Apache License 2.0 | 4 votes |
/** * Return the additional (undeclared) property. */ @JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return additionalProperties; }
Example #26
Source File: License.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #27
Source File: GithubUser.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #28
Source File: Quadrilateral.java From openapi-generator with Apache License 2.0 | 4 votes |
/** * Return the additional (undeclared) property. */ @JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return additionalProperties; }
Example #29
Source File: Milestone.java From Refactoring-Bot with MIT License | 4 votes |
@JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; }
Example #30
Source File: ProtoToAvroSchema.java From metastore with Apache License 2.0 | 4 votes |
@JsonAnyGetter public Map<String, Object> getOptions() { return this.options; }