Package | Description |
---|---|
org.eclipse.microprofile.openapi |
A set of Java interfaces, annotations and programming models
which allow Java developers to natively produce OpenAPI v3 documents
from their JAX-RS applications.
|
org.eclipse.microprofile.openapi.models.servers |
Model interfaces to represent servers used for a single API operation
or for all operations in an OpenAPI document, as well as a way to represent
variables for server URL template substitution.
|
Modifier and Type | Method and Description |
---|---|
static ServerVariables |
OASFactory.createServerVariables()
Deprecated.
since 1.1, use
Map<String, ServerVariable> for server variables instead |
Modifier and Type | Method and Description |
---|---|
ServerVariables |
ServerVariables.addServerVariable(String name,
ServerVariable serverVariable)
Deprecated.
This method adds a key-value item to a ServerVariables instance from the name-item parameter pair and returns the modified instance.
|
ServerVariables |
Server.getVariables()
This method returns the variables property of Server instance.
|
Modifier and Type | Method and Description |
---|---|
void |
Server.setVariables(ServerVariables variables)
Deprecated.
since 1.1, use
Server.setVariables(Map) instead |
default Server |
Server.variables(ServerVariables variables)
Deprecated.
since 1.1, use
Server.variables(Map) instead |
Copyright © 2017 – 2021 Eclipse Foundation. All rights reserved.
Use is subject to license terms.