Skip to content

Commit

Permalink
feat: RepositoryProvider.revision now public property (#5500)
Browse files Browse the repository at this point in the history

Signed-off-by: Nathan Johnson <[email protected]>
  • Loading branch information
swingingsimian authored Nov 15, 2024
1 parent 7551933 commit f0a4c52
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,23 @@ abstract class RepositoryProvider {
return this
}

String getRevision() {
return this.revision
}

RepositoryProvider setRevision(String revision) {
this.revision = revision
return this
}

String getProject() {
return this.project
}

ProviderConfig getConfig() {
return this.config
}

boolean hasCredentials() {
getUser() && getPassword()
}
Expand Down

0 comments on commit f0a4c52

Please sign in to comment.