io.apicurio.datamodels.models.asyncapi.v25.AsyncApi25OAuthFlowImpl 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.v25;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.asyncapi.v25.visitors.AsyncApi25Visitor;
import io.apicurio.datamodels.models.visitors.Visitor;
import java.util.LinkedHashMap;
import java.util.Map;
public class AsyncApi25OAuthFlowImpl extends NodeImpl implements AsyncApi25OAuthFlow {
private String authorizationUrl;
private String tokenUrl;
private String refreshUrl;
private Map scopes;
private Map extensions;
@Override
public String getAuthorizationUrl() {
return authorizationUrl;
}
@Override
public void setAuthorizationUrl(String value) {
this.authorizationUrl = value;
}
@Override
public String getTokenUrl() {
return tokenUrl;
}
@Override
public void setTokenUrl(String value) {
this.tokenUrl = value;
}
@Override
public String getRefreshUrl() {
return refreshUrl;
}
@Override
public void setRefreshUrl(String value) {
this.refreshUrl = value;
}
@Override
public Map getScopes() {
return scopes;
}
@Override
public void setScopes(Map value) {
this.scopes = 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) {
AsyncApi25Visitor viz = (AsyncApi25Visitor) visitor;
viz.visitOAuthFlow(this);
}
@Override
public Node emptyClone() {
return new AsyncApi25OAuthFlowImpl();
}
}