com.networknt.oas.model.impl.ServerVariableImpl 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.OpenApi3;
import com.networknt.oas.model.ServerVariable;
import java.util.Collection;
import java.util.Map;
public class ServerVariableImpl extends OpenApiObjectImpl implements ServerVariable {
public ServerVariableImpl(JsonNode json, JsonOverlay> parent, ReferenceRegistry refReg) {
super(json, parent, refReg);
super.maybeElaborateChildrenAtCreation();
}
public ServerVariableImpl(ServerVariable serverVariable, JsonOverlay> parent, ReferenceRegistry refReg) {
super(serverVariable, parent, refReg);
super.maybeElaborateChildrenAtCreation();
}
private ChildListOverlay
© 2015 - 2025 Weber Informatics LLC | Privacy Policy