Skip to content

Commit

Permalink
Add setter for all credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeuffer committed May 17, 2021
1 parent d63b528 commit 37d2e1b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ public MirrorCommandBuilder setCredentials(Credential credential, Credential...
return this;
}

public MirrorCommandBuilder setCredentials(List<Credential> credentials) {
this.credentials = credentials;
return this;
}

public MirrorCommandBuilder setSourceUrl(String sourceUrl) {
this.sourceUrl = sourceUrl;
return this;
Expand Down

0 comments on commit 37d2e1b

Please sign in to comment.