Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update getAuthSchemes javadoc #1930

Merged
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 @@ -105,6 +105,8 @@ private Model getModel() {
* <p>An <em>auth defining trait</em> is a trait that is marked with
* the {@code smithy.api#authDefinition} trait.
*
* <p>The returned map is ordered alphabetically by absolute shape ID.
*
* <p>An empty map is returned if {@code id} cannot be found in the
* model or is not a service shape.
*
Expand All @@ -127,7 +129,7 @@ public Map<ShapeId, Trait> getAuthSchemes(ToShapeId service) {
*
* <p>The returned map is provided in the same order as the values in the
* {@code auth} trait if an auth trait is present, otherwise the result
* returned is ordered alphabetically by absolute shape id.
* returned is ordered alphabetically by absolute shape ID.
*
* <p>An empty map is returned if {@code service} cannot be found in the
* model or is not a service shape.
Expand Down Expand Up @@ -167,7 +169,7 @@ public Map<ShapeId, Trait> getEffectiveAuthSchemes(ToShapeId service) {
*
* <p>The returned map is provided in the same order as the values in the
* {@code auth} trait if an auth trait is present, otherwise the result
* returned is ordered alphabetically by absolute shape id.
* returned is ordered alphabetically by absolute shape ID.
*
* <p>An empty map is returned if {@code service} shape cannot be found
* in the model or is not a service shape. An empty map is returned if
Expand Down