Package jetbrains.buildServer.vcs
Interface VcsUsernamesValidation
-
- All Superinterfaces:
TeamCityExtension
public interface VcsUsernamesValidation extends TeamCityExtension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<InvalidProperty>
validate(SUser user, VcsUsernamePropertyKey key, List<String> vcsNames)
Validate vcsNames for user in root with id vcsRootId If some vcs names are invalid then list of invalid properties should be returned
-
-
-
Method Detail
-
validate
List<InvalidProperty> validate(@NotNull SUser user, VcsUsernamePropertyKey key, @NotNull List<String> vcsNames)
Validate vcsNames for user in root with id vcsRootId If some vcs names are invalid then list of invalid properties should be returned- Parameters:
user
- User for which vcs names should be validatedvcsRootId
- VCS root id for which vcs names should be validatedvcsNames
- vcs names to be validated- Returns:
- list of invalid properties
-
-