
io.github.emm035.openapi.immutables.v3.links.AbstractRefLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-immutables Show documentation
Show all versions of openapi-immutables Show documentation
An implementation of the OpenAPI 3.0 specification with Java Immutables
The newest version!
package io.github.emm035.openapi.immutables.v3.links;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.github.emm035.openapi.immutables.v3.shared.Describable;
import io.github.emm035.openapi.immutables.v3.shared.Extensible;
import io.github.emm035.openapi.immutables.v3.shared.OpenApiStyle;
import org.immutables.value.Value.Check;
import org.immutables.value.Value.Immutable;
import java.util.Map;
import java.util.Optional;
@OpenApiStyle
@Immutable
@JsonDeserialize
public abstract class AbstractRefLink implements Link, Extensible, Describable {
public abstract String getOperationRef();
public abstract Map getParameters();
public abstract Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy