forked from jakartaee/validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidatorFactory.java
More file actions
119 lines (109 loc) · 3.44 KB
/
ValidatorFactory.java
File metadata and controls
119 lines (109 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* Jakarta Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
*/
package jakarta.validation;
/**
* Factory returning initialized {@code Validator} instances.
* <p>
* Implementations are thread-safe and instances are typically cached and reused.
*
* @author Emmanuel Bernard
* @author Gunnar Morling
* @author Hardy Ferentschik
* @author Guillaume Smet
*/
public interface ValidatorFactory extends AutoCloseable {
/**
* Returns an initialized {@link Validator} instance using the
* factory defaults for message interpolator, traversable resolver
* and constraint validator factory.
* <p>
* Validator instances can be pooled and shared by the implementation.
*
* @return an initialized {@code Validator} instance
*/
Validator getValidator();
/**
* Defines a new validator context and returns a {@code Validator}
* compliant this new context.
*
* @return a {@link ValidatorContext} instance
*/
ValidatorContext usingContext();
/**
* Returns the {@link MessageInterpolator} instance configured at
* initialization time for the {@code ValidatorFactory}.
* This is the instance used by {@link #getValidator()}.
*
* @return {@code MessageInterpolator} instance
*/
MessageInterpolator getMessageInterpolator();
/**
* Returns the {@link TraversableResolver} instance configured
* at initialization time for the {@code ValidatorFactory}.
* This is the instance used by {@link #getValidator()}.
*
* @return {@code TraversableResolver} instance
*/
TraversableResolver getTraversableResolver();
/**
* Returns the {@link ConstraintValidatorFactory} instance
* configured at initialization time for the
* {@code ValidatorFactory}.
* This is the instance used by {@link #getValidator()}.
*
* @return {@code ConstraintValidatorFactory} instance
*/
ConstraintValidatorFactory getConstraintValidatorFactory();
/**
* Returns the {@link ParameterNameProvider} instance configured at
* initialization time for the {@code ValidatorFactory}.
* This is the instance used by #getValidator().
*
* @return {@code ParameterNameProvider} instance
*
* @since 1.1
*/
ParameterNameProvider getParameterNameProvider();
/**
* Returns the {@link ClockProvider} instance configured at
* initialization time for the {@code ValidatorFactory}.
* This is the instance used by #getValidator().
*
* @return {@code ClockProvider} instance
*
* @since 2.0
*/
ClockProvider getClockProvider();
/**
* Returns an instance of the specified type allowing access to
* provider-specific APIs. If the Jakarta Validation provider
* implementation does not support the specified class, a
* {@code ValidationException} is thrown.
*
* @param type the class of the object to be returned
* @param <T> the type of the object to be returned
* @return an instance of the specified class
* @throws ValidationException if the provider does not
* support the call.
*/
public <T> T unwrap(Class<T> type);
/**
* Closes the {@code ValidatorFactory} instance.
*
* After the {@code ValidatorFactory} instance is closed, calling the following
* methods is not allowed:
* <ul>
* <li>methods of this {@code ValidatorFactory} instance</li>
* <li>methods of {@link Validator} instances created by this
* {@code ValidatorFactory}</li>
* </ul>
*
* @since 1.1
*/
@Override
public void close();
}