com.networknt.oas.model.impl.EncodingPropertyImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-parser Show documentation
Show all versions of openapi-parser Show documentation
A light-weight, fast OpenAPI 3.0 parser and validator
package com.networknt.oas.model.impl;
import com.fasterxml.jackson.databind.JsonNode;
import com.networknt.oas.jsonoverlay.*;
import com.networknt.oas.model.EncodingProperty;
import com.networknt.oas.model.OpenApi3;
import java.util.Map;
public class EncodingPropertyImpl extends OpenApiObjectImpl implements EncodingProperty {
public EncodingPropertyImpl(JsonNode json, JsonOverlay> parent, ReferenceRegistry refReg) {
super(json, parent, refReg);
super.maybeElaborateChildrenAtCreation();
}
public EncodingPropertyImpl(EncodingProperty encodingProperty, JsonOverlay> parent, ReferenceRegistry refReg) {
super(encodingProperty, parent, refReg);
super.maybeElaborateChildrenAtCreation();
}
private ChildOverlay contentType = null;
private ChildMapOverlay headers = null;
private ChildOverlay style = null;
private ChildOverlay explode = null;
private ChildMapOverlay
© 2015 - 2025 Weber Informatics LLC | Privacy Policy