Package jetbrains.buildServer.serverSide
Interface UserGroupPropertyValidator
-
- All Known Implementing Classes:
UserGroupPropertyUniquenessValidator
public interface UserGroupPropertyValidator
Validates group property.- Since:
- 9.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
validate(String propertyValue, SUserGroup editee, UserGroupForm currentUserGroupData)
Returns error text if property value is not valid, null otherwise
-
-
-
Method Detail
-
validate
@Nullable String validate(@NotNull String propertyValue, @Nullable SUserGroup editee, @NotNull UserGroupForm currentUserGroupData)
Returns error text if property value is not valid, null otherwise- Parameters:
propertyValue
- property valueeditee
- group that is being edited (null if group is being created)currentUserGroupData
- current user group data- Returns:
- see above
-
-