com.networknt.oas.model.impl.ExampleImpl 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.Example;
import com.networknt.oas.model.OpenApi3;
import java.util.Map;
public class ExampleImpl extends OpenApiObjectImpl implements Example {
public ExampleImpl(JsonNode json, JsonOverlay> parent, ReferenceRegistry refReg) {
super(json, parent, refReg);
super.maybeElaborateChildrenAtCreation();
}
public ExampleImpl(Example example, JsonOverlay> parent, ReferenceRegistry refReg) {
super(example, parent, refReg);
super.maybeElaborateChildrenAtCreation();
}
private ChildOverlay summary = null;
private ChildOverlay description = null;
private ChildOverlay
© 2015 - 2025 Weber Informatics LLC | Privacy Policy