Skip to content

Commit 6a0fdee

Browse files
ewaostrowskaMattias-Sehlstedt
authored andcommitted
Revert "fix: broken and incorrect documentation links"
This reverts commit 3a53a5e.
1 parent aa2e9f8 commit 6a0fdee

5 files changed

Lines changed: 16 additions & 11 deletions

File tree

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/media/Content.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
import java.util.Objects;
55

66
/**
7-
* Content is a map of Media Type Objects
8-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#media-type-object"
7+
* Content
8+
*
9+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#content-object"
910
*/
1011

1112
public class Content extends LinkedHashMap<String, MediaType> {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/media/EncodingProperty.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
import java.util.Objects;
99

1010
/**
11-
* A single encoding definition applied to a single schema property.
12-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#encoding-object"
11+
* EncodingProperty
12+
*
13+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#encoding-property-object"
1314
*/
1415

1516
public class EncodingProperty {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/parameters/RequestBody.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
import io.swagger.v3.oas.models.media.Content;
55

66
/**
7-
* Describes a single request body.
8-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#request-body-object"
7+
* RequestBody
8+
*
9+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#requestBody-object"
910
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#request-body-object"
1011
*/
1112

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/security/OAuthFlow.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
import java.util.Objects;
66

77
/**
8-
* Configuration details for a supported OAuth Flow.
9-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#oauth-flow-object"
10-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#oauth-flow-object"
8+
* OAuthFlow
9+
*
10+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#oauth-flows-object"
11+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#oauth-flows-object"
1112
*/
1213

1314
public class OAuthFlow {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/security/Scopes.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
import java.util.Objects;
55

66
/**
7-
* The available scopes for an OAuth Flow, as a map of scope name to short description.
8-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#oauth-flow-object"
7+
* Scopes
8+
*
9+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#scoped-object"
910
*/
1011

1112
public class Scopes extends LinkedHashMap<String, String> {

0 commit comments

Comments
 (0)