com.atlassian.jira.project
Class ProjectKeyRegexValidator
java.lang.Object
com.atlassian.jira.project.ProjectKeyRegexValidator
- All Implemented Interfaces:
- Validator
public class ProjectKeyRegexValidator
- extends Object
- implements Validator
Validates a project's regex. We can't do this exhaustively, so we:
- Make sure the new regex can match existing projects
- Check if the new regex matches a list of banned characters "naively", that is, construct
strings with the banned character at the beginning, middle and end and see if the regex matches,
rejecting it if so.
- Check if the new regex contains non-ascii characters
- Since:
- v4.4
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ProjectKeyRegexValidator
public ProjectKeyRegexValidator()
validate
public Validator.Result validate(String value)
- Description copied from interface:
Validator
- Validate the given string to see if it passes and if not, why not.
- Specified by:
validate
in interface Validator
- Parameters:
value
- all validation input is a String.
- Returns:
- A result that contains access to the details of the validation outcome.
Copyright © 2002-2012 Atlassian. All Rights Reserved.