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