Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
* @author hyeonisism
* @author doljae
* @author zdary
* @author Haotian Zhang
*/
public abstract class AbstractOpenApiResource extends SpecFilter {

Expand Down Expand Up @@ -340,9 +341,20 @@ private void getOpenApi() {
this.getOpenApi(null, Locale.getDefault());
}

/**
* Gets open api.
*
/**
* Gets open api.
*
* @param locale the locale
* @return the open api
*/
protected OpenAPI getOpenApi(Locale locale) {
return this.getOpenApi(null, locale);
}

/**
* Gets open api.
*
* @param serverBaseUrl the server base url
* @param locale the locale
* @return the open api
*/
Expand Down