Title: ArgValueValidator Description: Defines a class that can validate a value instance of a declared ConfigMetaType
| 19 | * <p>Description: Defines a class that can validate a value instance of a declared ConfigMetaType</p> |
| 20 | */ |
| 21 | public interface ArgValueValidator { |
| 22 | /** |
| 23 | * Validates the passed configuration item |
| 24 | * @param citem The item to validate |
| 25 | */ |
| 26 | public void validate(ConfigurationItem citem); |
| 27 | |
| 28 | /** A static exception that needs no stack trace or whatever */ |
| 29 | public static final Exception EX = new Exception(); |
| 30 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…