Package com.atlassian.bamboo.author
Interface AuthorCreatorService
-
- All Known Implementing Classes:
AuthorCreatorServiceImpl
public interface AuthorCreatorService
Service that creates records for Authors (repository committers) in Bamboo- Author:
- anatoli
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createAuthorIfMissing(AuthorContext author)
Creates an author record for a given author if one does not exist in a db already.void
createMissingAuthors(@Nullable Iterable<? extends AuthorContext> author)
Creates any authors if they don't existvoid
createMissingAuthors(BuildContext buildContext)
Creates records for Authors
-
-
-
Method Detail
-
createMissingAuthors
void createMissingAuthors(BuildContext buildContext)
Creates records for Authors- Parameters:
buildContext
-
-
createAuthorIfMissing
void createAuthorIfMissing(AuthorContext author)
Creates an author record for a given author if one does not exist in a db already.- Parameters:
author
-
-
createMissingAuthors
void createMissingAuthors(@Nullable @Nullable Iterable<? extends AuthorContext> author)
Creates any authors if they don't exist- Parameters:
author
-
-
-