forked from loafle/openapi-generator-original
[code] indicate replacement methods in the javadoc (#3329)
See PR #2946
This commit is contained in:
parent
14f611d159
commit
15f8c2c78b
@ -19,6 +19,7 @@ package org.openapitools.codegen;
|
||||
|
||||
import io.swagger.v3.oas.models.OpenAPI;
|
||||
import io.swagger.v3.parser.core.models.AuthorizationValue;
|
||||
|
||||
import org.openapitools.codegen.auth.AuthParser;
|
||||
|
||||
import java.util.List;
|
||||
@ -64,6 +65,10 @@ public class ClientOptInput {
|
||||
return config;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #config(CodegenConfig)} instead
|
||||
* @param config codegen config
|
||||
*/
|
||||
@Deprecated
|
||||
public void setConfig(CodegenConfig config) {
|
||||
this.config = config;
|
||||
@ -74,6 +79,10 @@ public class ClientOptInput {
|
||||
return openAPI;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #openAPI(OpenAPI)} instead
|
||||
* @param openAPI the specification
|
||||
*/
|
||||
@Deprecated
|
||||
public void setOpenAPI(OpenAPI openAPI) {
|
||||
this.openAPI = openAPI;
|
||||
|
Loading…
x
Reference in New Issue
Block a user