Skip to content

Commit

Permalink
Merge pull request #9423 from swagger-api/bearer_check
Browse files Browse the repository at this point in the history
added bearer checks to be used in templates.
  • Loading branch information
HugoMario committed May 4, 2019
2 parents c8d023b + 4cacc81 commit 768fc29
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ public Boolean getIsBasic() {
return getBooleanValue(CodegenConstants.IS_BASIC_EXT_NAME);
}

public Boolean getIsBearer() {
return getBooleanValue(CodegenConstants.IS_BEARER_EXT_NAME);
}

public Boolean getIsOAuth() {
return getBooleanValue(CodegenConstants.IS_OAUTH_EXT_NAME);
}
Expand Down

0 comments on commit 768fc29

Please sign in to comment.