Class FishEyeRepositoryViewer
java.lang.Object
com.atlassian.bamboo.vcs.viewer.fisheye.FishEyeRepositoryViewer
- All Implemented Interfaces:
VcsRepositoryViewer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription@Nullable String
getWebRepositoryUrlForFile
(@NotNull CommitFile file, @NotNull VcsRepositoryData repositoryData) Generate the link to a given file in a given repository@Nullable String
getWebRepositoryUrlForFileDiff
(CommitFile file, @NotNull VcsRepositoryData repositoryData) Generate the link to a given file, showing changes in given revision.@Nullable String
getWebRepositoryUrlForFileRevision
(CommitFile file, @NotNull VcsRepositoryData repositoryData) Generate the link to a given file in a given repository at given revision,@Nullable String
getWebRepositoryUrlForRevision
(@NotNull String revisionId, @NotNull VcsRepositoryData repositoryData) Provide the url to link to the given revision in the web repositorygetWebRepositoryUrlForRevisions
(Stream<String> revisionIds, VcsRepositoryData repositoryData) Provide the urls to link all the given commits in the web repository
-
Constructor Details
-
FishEyeRepositoryViewer
-
-
Method Details
-
getWebRepositoryUrlForRevision
@Nullable public @Nullable String getWebRepositoryUrlForRevision(@NotNull @NotNull String revisionId, @NotNull @NotNull VcsRepositoryData repositoryData) Description copied from interface:VcsRepositoryViewer
Provide the url to link to the given revision in the web repository- Specified by:
getWebRepositoryUrlForRevision
in interfaceVcsRepositoryViewer
- Parameters:
revisionId
- the revision to links to. Should not be blank or null.repositoryData
- the repository type the commit came from- Returns:
- a full url string.
-
getWebRepositoryUrlForRevisions
@NotNull public @NotNull Map<String,String> getWebRepositoryUrlForRevisions(Stream<String> revisionIds, VcsRepositoryData repositoryData) Description copied from interface:VcsRepositoryViewer
Provide the urls to link all the given commits in the web repository- Specified by:
getWebRepositoryUrlForRevisions
in interfaceVcsRepositoryViewer
- Parameters:
revisionIds
- to generate links for. Stream should not contain empty values or nulls.repositoryData
- the repository type the commit came from- Returns:
- a map of the commit to its url.
-
getWebRepositoryUrlForFile
@Nullable public @Nullable String getWebRepositoryUrlForFile(@NotNull @NotNull CommitFile file, @NotNull @NotNull VcsRepositoryData repositoryData) Description copied from interface:VcsRepositoryViewer
Generate the link to a given file in a given repository- Specified by:
getWebRepositoryUrlForFile
in interfaceVcsRepositoryViewer
- Parameters:
file
- The file we want to link to.repositoryData
- For the build (and hense the repository file belongs to).- Returns:
- The url
-
getWebRepositoryUrlForFileRevision
@Nullable public @Nullable String getWebRepositoryUrlForFileRevision(CommitFile file, @NotNull @NotNull VcsRepositoryData repositoryData) Description copied from interface:VcsRepositoryViewer
Generate the link to a given file in a given repository at given revision,- Specified by:
getWebRepositoryUrlForFileRevision
in interfaceVcsRepositoryViewer
- Parameters:
file
- The file we want to link to.repositoryData
- For the build (and hense the repository file belongs to).- Returns:
- The url
-
getWebRepositoryUrlForFileDiff
@Nullable public @Nullable String getWebRepositoryUrlForFileDiff(CommitFile file, @NotNull @NotNull VcsRepositoryData repositoryData) Description copied from interface:VcsRepositoryViewer
Generate the link to a given file, showing changes in given revision.- Specified by:
getWebRepositoryUrlForFileDiff
in interfaceVcsRepositoryViewer
- Parameters:
file
- The file we want to link to.repositoryData
- For the build (and hense the repository file belongs to).- Returns:
- The url
-