io.apicurio.datamodels.models.asyncapi.v21.AsyncApi21LicenseImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
package io.apicurio.datamodels.models.asyncapi.v21;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.asyncapi.v21.visitors.AsyncApi21Visitor;
import io.apicurio.datamodels.models.visitors.Visitor;
import java.util.LinkedHashMap;
import java.util.Map;
public class AsyncApi21LicenseImpl extends NodeImpl implements AsyncApi21License {
private String name;
private String url;
private Map extensions;
@Override
public String getName() {
return name;
}
@Override
public void setName(String value) {
this.name = value;
}
@Override
public String getUrl() {
return url;
}
@Override
public void setUrl(String value) {
this.url = value;
}
@Override
public Map getExtensions() {
return extensions;
}
@Override
public void addExtension(String name, JsonNode value) {
if (this.extensions == null) {
this.extensions = new LinkedHashMap<>();
}
this.extensions.put(name, value);
}
@Override
public void clearExtensions() {
if (this.extensions != null) {
this.extensions.clear();
}
}
@Override
public void removeExtension(String name) {
if (this.extensions != null) {
this.extensions.remove(name);
}
}
@Override
public void accept(Visitor visitor) {
AsyncApi21Visitor viz = (AsyncApi21Visitor) visitor;
viz.visitLicense(this);
}
@Override
public Node emptyClone() {
return new AsyncApi21LicenseImpl();
}
}