Interface Verifier

  • All Known Implementing Classes:
    VerifierImpl

    public interface Verifier
    An instance of this interface can validates documents.

    An instance of this interface can be obtained through the VerifierFactory.newVerifier(java.lang.String) method or Schema.newVerifier() method. Once it is created, an application can use one instance to validate multiple documents.

    This interface is not thread-safe and not reentrant. That is, only one thread can use it at any given time, and you can only validate one document at any given time.

    Since:
    Feb. 23, 2001
    • Field Detail

      • FEATURE_HANDLER

        static final String FEATURE_HANDLER
        Deprecated.
        a read-only feature that checks whether the implementation supports getVerifierHandler method.

        Now a verifier implementation is required to support VerifierHandler. Therefore an application doesn't need to check this feature.

        See Also:
        Constant Field Values
      • FEATURE_FILTER

        static final String FEATURE_FILTER
        Deprecated.
        a read-only feature that checks whether the implementation supports getVerifierFilter method.

        Now a verifier implementation is required to support VerifierFilter. Therefore an application doesn't need to check this feature.

        See Also:
        Constant Field Values