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

fix(ContainerAuthenticator): fix some javadoc comments #145

Merged
merged 1 commit into from
Sep 30, 2021
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 @@ -49,7 +49,7 @@ public class ContainerAuthenticator extends IamRequestBasedAuthenticator impleme
private String iamProfileId;

/**
* This Builder class is used to construct IamAuthenticator instances.
* This Builder class is used to construct ContainerAuthenticator instances.
*/
public static class Builder {
private String crTokenFilename;
Expand Down Expand Up @@ -84,9 +84,9 @@ private Builder(ContainerAuthenticator obj) {
}

/**
* Constructs a new instance of IamAuthenticator from the builder's configuration.
* Constructs a new instance of ContainerAuthenticator from the builder's configuration.
*
* @return the IamAuthenticator instance
* @return the ContainerAuthenticator instance
*/
public ContainerAuthenticator build() {
return new ContainerAuthenticator(this);
Expand Down Expand Up @@ -215,7 +215,7 @@ protected ContainerAuthenticator() {
}

/**
* Constructs an IamAuthenticator instance from the configuration
* Constructs a ContainerAuthenticator instance from the configuration
* contained in "builder".
*
* @param builder the Builder instance containing the configuration to be used
Expand Down