Searched refs:Validator (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jaxp/src/javax/xml/validation/
H A DSchema.java50 * One is {@link Validator}, which provides highly-level validation
79 * Creates a new {@link Validator} for this {@link Schema}.
86 * set on the {@link Validator} constructed.</p>
91 public abstract Validator newValidator();
H A DValidator.java45 * sure that one {@link Validator} object is not used from
55 public abstract class Validator { class
62 * <p>Derived classes must create {@link Validator} objects that have
67 protected Validator() { method in class:Validator
71 * <p>Reset this <code>Validator</code> to its original configuration.</p>
73 * <p><code>Validator</code> is reset to the same state as when it was created with
75 * <code>reset()</code> is designed to allow the reuse of existing <code>Validator</code>s
76 * thus saving resources associated with the creation of new <code>Validator</code>s.</p>
78 * <p>The reset <code>Validator</code> is not guaranteed to have the same {@link LSResourceResolver} or {@link ErrorHandler}
262 * {@link Validator} i
[all...]
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DValidateClass.java48 Validator vc = new Validator(0, null);
49 vc = new Validator(2, vc);
50 vc = new Validator(0, vc);
51 vc = new Validator(3, vc);
52 vc = new Validator(Integer.MIN_VALUE, vc);
53 vc = new Validator(1, vc);
54 vc = new Validator(1, vc);
55 vc = new Validator(0, vc);
64 Validator vc_
99 class Validator implements ObjectInputValidation, java.io.Serializable { class in inherits:ObjectInputValidation,java.io.Serializable
104 public Validator(int prio, Validator n) { method in class:Validator
[all...]
/openjdk7/jdk/test/sun/security/validator/
H A DCertReplace.java36 import sun.security.validator.Validator;
47 Validator v = Validator.getInstance
48 (Validator.TYPE_PKIX, Validator.VAR_GENERIC, ks);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DValidator.java31 * The <tt>Validator</tt> class is responsible for controlling the validation
53 * the {@link Validator#validate(Object) Validator.validate} method
72 * The <tt>Validator</tt> class is responsible for managing On-Demand Validation.
84 * <tt>Validator</tt>, <tt>Unmarshaller</tt>, or <tt>Marshaller</tt> prior to
101 * via the <tt>setEventHandler</tt> API's on <tt>Validator</tt>,
109 * <tt>Validator</tt>.
146 * JAXB Providers on Validator. However, some providers may support
160 public interface Validator { interface
173 * Calling this method with a null parameter will cause the Validator
[all...]
H A DJAXBContext.java187 * Validation has been changed significantly since JAXB 1.0. The {@link Validator}
190 * your JAXB provider. JAXB 1.0 client applications that rely on <tt>Validator</tt>
665 * {@link Validator} has been made optional and deprecated in JAXB 2.0. Please
666 * refer to the javadoc for {@link Validator} for more detail.
668 * Create a <tt>Validator</tt> object that can be used to validate a
671 * @return a <tt>Validator</tt> object
674 * <tt>Validator</tt> object
677 public abstract Validator createValidator() throws JAXBException;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DAbstractXMLSchema.java26 import javax.xml.validation.Validator;
62 public final Validator newValidator() {
H A DValidatorImpl.java33 import javax.xml.validation.Validator;
49 * <p>Implementation of Validator for W3C XML Schemas.</p>
56 final class ValidatorImpl extends Validator implements PSVIProvider {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DValidationErrorHandler.java32 import javax.xml.validation.Validator;
36 * {@link Validator#validate} method invocation. Specify
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DValidator.java35 * Validator abstract base class. Concrete classes are instantiated by calling
39 * The model is that a Validator instance is created specifying validation
53 * <p>There are two orthogonal parameters to select the Validator
74 * Validator validator = Validator.getInstance(Validator.TYPE_PKIX,
75 * Validator.VAR_TLS_CLIENT,
87 public abstract class Validator { class
156 Validator(String type, String variant) { method in class:Validator
162 * Get a new Validator instanc
[all...]
H A DEndEntityChecker.java39 * are supported defined as VAR_XXX constants in the Validator class:
137 if (variant.equals(Validator.VAR_GENERIC)) {
140 } else if (variant.equals(Validator.VAR_TLS_SERVER)) {
142 } else if (variant.equals(Validator.VAR_TLS_CLIENT)) {
144 } else if (variant.equals(Validator.VAR_CODE_SIGNING)) {
146 } else if (variant.equals(Validator.VAR_JCE_SIGNING)) {
148 } else if (variant.equals(Validator.VAR_PLUGIN_CODE_SIGNING)) {
150 } else if (variant.equals(Validator.VAR_TSA_SERVER)) {
332 if (variant.equals(Validator.VAR_JCE_SIGNING) == false) {
H A DPKIXValidator.java38 * Validator implementation built on the PKIX CertPath API. This
52 public final class PKIXValidator extends Validator {
184 if ((variant == Validator.VAR_TLS_SERVER) ||
185 (variant == Validator.VAR_TLS_CLIENT)) {
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DX509TrustManagerImpl.java69 private volatile Validator clientValidator, serverValidator;
92 Validator v = getValidator(Validator.VAR_TLS_SERVER);
141 private Validator checkTrustedInit(X509Certificate[] chain,
153 Validator v = null;
160 v = getValidator(Validator.VAR_TLS_CLIENT);
173 v = getValidator(Validator.VAR_TLS_SERVER);
186 Validator v = checkTrustedInit(chain, authType, isClient);
241 Validator v = checkTrustedInit(chain, authType, isClient);
311 private Validator getValidato
[all...]
H A DTrustManagerFactoryImpl.java36 import sun.security.validator.Validator;
240 return new X509TrustManagerImpl(Validator.TYPE_SIMPLE, ks);
252 return new X509TrustManagerImpl(Validator.TYPE_PKIX, ks);
267 return new X509TrustManagerImpl(Validator.TYPE_PKIX, pkixParams);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DClientSchemaValidationTube.java42 import javax.xml.validation.Validator;
57 private final Validator validator;
91 protected Validator getValidator() {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerSchemaValidationTube.java45 import javax.xml.validation.Validator;
60 private final Validator validator;
96 protected Validator getValidator() {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DJAXPValidationMessages_de.properties46 # Validator error messages
48 SourceNotAccepted = Quellparameter des Typs "{0}" wird von diesem Validator nicht akzeptiert.
H A DJAXPValidationMessages_fr.properties46 # Validator error messages
H A DJAXPValidationMessages_es.properties46 # Validator error messages
H A DJAXPValidationMessages_it.properties46 # Validator error messages
H A DJAXPValidationMessages_pt_BR.properties46 # Validator error messages
H A DJAXPValidationMessages_sv.properties46 # Validator error messages
H A DJAXPValidationMessages_zh_CN.properties46 # Validator error messages
H A DJAXPValidationMessages_zh_TW.properties46 # Validator error messages
H A DJAXPValidationMessages_ko.properties46 # Validator error messages

Completed in 45 milliseconds

12