public abstract class XMLValidator extends Object
XMLStreamReader
and
XMLStreamWriter
instances can call to validate
xml documents.
Validator instances are created from and by non-stateful
XMLValidationSchema
instances. A new validator instance has to
be created for each document read or written, ie. can not be shared
or reused, unlike schema instances which can be.
Modifier and Type | Field and Description |
---|---|
static int |
CONTENT_ALLOW_ANY_TEXT
This value indicates that any textual content (plain PCTEXT) is
allowed, and that validator is not going to do any validation
for it.
|
static int |
CONTENT_ALLOW_NONE
This value indicates that no content whatsoever
is legal within current context, that is, where the only legal content
to follow is the closing end tag -- not even comments or processing
instructions are allowed.
|
static int |
CONTENT_ALLOW_UNDEFINED
This value is a placeholder that should never be returned by
validators, but that can be used internally as an uninitialized
value.
|
static int |
CONTENT_ALLOW_VALIDATABLE_TEXT
This value indicates that textual content is allowed, but that
the validator needs to be called to let it do actual content-based
validation.
|
static int |
CONTENT_ALLOW_WS
This value indicates that only white space text content is allowed,
not other kinds of text.
|
static int |
CONTENT_ALLOW_WS_NONSTRICT
This value is similar to
CONTENT_ALLOW_WS_NONSTRICT ,
but only used for content typing purposes, not for validation. |
Modifier | Constructor and Description |
---|---|
protected |
XMLValidator() |
Modifier and Type | Method and Description |
---|---|
abstract String |
getAttributeType(int index)
Method for getting schema-specified type of an attribute, if
information is available.
|
abstract int |
getIdAttrIndex()
Method for finding out the index of the attribute that
is of type ID; derived from DTD, W4C Schema, or some other validation
source.
|
abstract int |
getNotationAttrIndex()
Method for finding out the index of the attribute (collected using
the attribute collector; having DTD/Schema-derived info in same order)
that is of type NOTATION.
|
abstract XMLValidationSchema |
getSchema()
Returns the schema instance that created this validator
object, if known (and applicable).
|
String |
getSchemaType()
Returns type of schema that was used to construct this
validator instance.
|
abstract String |
validateAttribute(String localName,
String uri,
String prefix,
char[] valueChars,
int valueStart,
int valueEnd)
Callback method called on validator to give it a chance to validate
the value of an attribute, as well as to normalize its value if
appropriate (remove leading/trailing/intervening white space for
certain token types etc.).
|
abstract String |
validateAttribute(String localName,
String uri,
String prefix,
String value)
Callback method called on validator to give it a chance to validate
the value of an attribute, as well as to normalize its value if
appropriate (remove leading/trailing/intervening white space for
certain token types etc.).
|
abstract int |
validateElementAndAttributes()
Method called after calling
validateAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String) on all
attributes (if any), but before starting to handle element
content. |
abstract int |
validateElementEnd(String localName,
String uri,
String prefix)
Method called right after encountering an element close tag.
|
abstract void |
validateElementStart(String localName,
String uri,
String prefix) |
abstract void |
validateText(char[] cbuf,
int textStart,
int textEnd,
boolean lastTextSegment)
Method called to validate textual content.
|
abstract void |
validateText(String text,
boolean lastTextSegment)
Method called to validate textual content.
|
abstract void |
validationCompleted(boolean eod)
Method called when the validation is completed; either due to the
input stream ending, or due to an explicit 'stop validation' request
by the application (via context object).
|
public static final int CONTENT_ALLOW_NONE
public static final int CONTENT_ALLOW_WS
public static final int CONTENT_ALLOW_WS_NONSTRICT
CONTENT_ALLOW_WS_NONSTRICT
,
but only used for content typing purposes, not for validation.
This means that if non-white space text content is encountered,
no problem is reported.
This value is currently only used with DTD processors, when in typing (non-validating) mode.
public static final int CONTENT_ALLOW_VALIDATABLE_TEXT
public static final int CONTENT_ALLOW_ANY_TEXT
public static final int CONTENT_ALLOW_UNDEFINED
public String getSchemaType()
XMLValidationSchema.SCHEMA_ID_DTD
).public abstract XMLValidationSchema getSchema()
ValidatorPair
will return null since it 'contains' multiple validators
and generally does not have just one parent or owner schema.public abstract void validateElementStart(String localName, String uri, String prefix) throws XMLStreamException
XMLStreamException
public abstract String validateAttribute(String localName, String uri, String prefix, String value) throws XMLStreamException
XMLStreamException
public abstract String validateAttribute(String localName, String uri, String prefix, char[] valueChars, int valueStart, int valueEnd) throws XMLStreamException
valueChars
- Character array that contains value (possibly
along with some other text)valueStart
- Index of the first character of the value in
in valueChars
arrayvalueEnd
- Index of the character AFTER the last character;
so that the length of the value String is
valueEnd - valueStart
XMLStreamException
public abstract int validateElementAndAttributes() throws XMLStreamException
validateAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
on all
attributes (if any), but before starting to handle element
content.CONTENT_ALLOW_
constants, to indicate
what kind of textual content is allowed at the scope returned
to after the element has closed.XMLStreamException
public abstract int validateElementEnd(String localName, String uri, String prefix) throws XMLStreamException
CONTENT_ALLOW_
constants, to indicate
what kind of textual content is allowed at the scope returned
to after the element has closed.XMLStreamException
public abstract void validateText(String text, boolean lastTextSegment) throws XMLStreamException
Note: this method is only guaranteed to be called when
validateElementAndAttributes()
for the currently open
element returned CONTENT_ALLOW_VALIDATABLE_TEXT
(or,
in case of mixed content, validateElementEnd(java.lang.String, java.lang.String, java.lang.String)
, for the
last enclosed element). Otherwise, validator context may choose
not to call the method as an optimization.
text
- Text content to validatelastTextSegment
- Whether this text content is the last text
segment before a close element; true if it is, false if it is not,
or no determination can be made. Can be used for optimizing
validation -- if this is true, no text needs to be buffered since
no more will be sent before the current element closes.XMLStreamException
public abstract void validateText(char[] cbuf, int textStart, int textEnd, boolean lastTextSegment) throws XMLStreamException
Note: this method is only guaranteed to be called when
validateElementAndAttributes()
for the currently open
element returned CONTENT_ALLOW_VALIDATABLE_TEXT
(or,
in case of mixed content, validateElementEnd(java.lang.String, java.lang.String, java.lang.String)
, for the
last enclosed element). Otherwise, validator context may choose
not to call the method as an optimization.
cbuf
- Character array that contains text content to validatetextStart
- Index of the first character of the content to
validatetextEnd
- Character following the last character of the
content to validate (that is, length of content to validate is
textEnd - textStart
).lastTextSegment
- Whether this text content is the last text
segment before a close element; true if it is, false if it is not,
or no determination can be made. Can be used for optimizing
validation -- if this is true, no text needs to be buffered since
no more will be sent before the current element closes.XMLStreamException
public abstract void validationCompleted(boolean eod) throws XMLStreamException
eod
- Flag that indicates whether this method was called by the
context due to the end of the stream (true); or by an application
requesting end of validation (false).XMLStreamException
public abstract String getAttributeType(int index)
public abstract int getIdAttrIndex()
public abstract int getNotationAttrIndex()
Copyright © 2015 fasterxml.com. All Rights Reserved.