io.apicurio.datamodels.models.asyncapi.v30.AsyncApi30OperationReply 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.v30;
import io.apicurio.datamodels.models.Node;
import java.util.List;
public interface AsyncApi30OperationReply extends Node, AsyncApi30Extensible, AsyncApi30Referenceable {
public AsyncApi30OperationReplyAddress getAddress();
public void setAddress(AsyncApi30OperationReplyAddress value);
public AsyncApi30OperationReplyAddress createOperationReplyAddress();
public AsyncApi30Reference getChannel();
public void setChannel(AsyncApi30Reference value);
public AsyncApi30Reference createReference();
public List getMessages();
public void addMessage(AsyncApi30Reference value);
public void clearMessages();
public void removeMessage(AsyncApi30Reference value);
}