io.apicurio.datamodels.models.asyncapi.v23.AsyncApi23Server 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.v23;
import io.apicurio.datamodels.models.asyncapi.AsyncApiServer;
import java.util.List;
public interface AsyncApi23Server extends AsyncApiServer, AsyncApi23Extensible, AsyncApi23Referenceable {
public String getUrl();
public void setUrl(String value);
public AsyncApi23SecurityRequirement createSecurityRequirement();
public List getSecurity();
public void addSecurity(AsyncApi23SecurityRequirement value);
public void clearSecurity();
public void removeSecurity(AsyncApi23SecurityRequirement value);
}