1 package com.trendmicro.grid.acl.metadata;
2
3 /**
4 * Resolves a Meta validator for the current context.
5 *
6 * @author juergen_kellerer, 2010-11-30
7 * @version 1.0
8 */
9 public interface ValidatorResolver {
10 /**
11 * The validator that can be used with the current context or 'null' if no validator is required.
12 *
13 * @return validator that can be used with the current context or 'null' if no validator is required.
14 */
15 Validator getValidator();
16 }