diff --git a/src/main/java/de/kosit/validationtool/api/InputFactory.java b/src/main/java/de/kosit/validationtool/api/InputFactory.java index bcf0e87..718cc8e 100644 --- a/src/main/java/de/kosit/validationtool/api/InputFactory.java +++ b/src/main/java/de/kosit/validationtool/api/InputFactory.java @@ -183,7 +183,7 @@ public class InputFactory { /** * Reads a test document from a {@link Source} using a specified digest algorithm. - * + *
* Note: computing the hashcode is only supported for {@link StreamSource}. You can not directly use other * {@link Source Soures}. You need to supply the hashcode for identification then. * diff --git a/src/main/java/de/kosit/validationtool/api/ResolvingConfigurationStrategy.java b/src/main/java/de/kosit/validationtool/api/ResolvingConfigurationStrategy.java index d9c5718..f9404d9 100644 --- a/src/main/java/de/kosit/validationtool/api/ResolvingConfigurationStrategy.java +++ b/src/main/java/de/kosit/validationtool/api/ResolvingConfigurationStrategy.java @@ -27,9 +27,9 @@ import java.net.URI; /** * Centralized construction and configuration of XML related infrastructure components. This interface allows to use * custom implementations and configurations of internal xml related factories and objects. - * + *
* The KoSIT Validator provides out of the box implementations with various security levels based on openjdk SAX stack. - * + *
* If you decide to implement a custom strategy, please be aware of XML security within your stack. The validator * components beyond this strategy asume secured implementation of the interfaces provided by this strategy. There is no * effort to mitigate or prevent xml related security issues such as XXE, loading external sources etc. Your would be diff --git a/src/main/java/de/kosit/validationtool/cmd/CommandLineApplication.java b/src/main/java/de/kosit/validationtool/cmd/CommandLineApplication.java index 98062bf..5f6f1e6 100644 --- a/src/main/java/de/kosit/validationtool/cmd/CommandLineApplication.java +++ b/src/main/java/de/kosit/validationtool/cmd/CommandLineApplication.java @@ -30,7 +30,7 @@ import static org.apache.commons.lang3.StringUtils.isNotEmpty; /** * Commandline interface of the validator. It parses the commandline args and hands over actual execution to * {@link Validator}. - * + *
* This separated from {@link Validator} to configure the slf4j simple logging. * * @author Andreas Penski diff --git a/src/main/java/de/kosit/validationtool/impl/input/ResourceInput.java b/src/main/java/de/kosit/validationtool/impl/input/ResourceInput.java index 4952474..d0a82b9 100644 --- a/src/main/java/de/kosit/validationtool/impl/input/ResourceInput.java +++ b/src/main/java/de/kosit/validationtool/impl/input/ResourceInput.java @@ -30,7 +30,7 @@ import java.net.URL; /** * An {@link Input} carries an {@link URL} which can be used for all 'locatable' inputs such as {@link File}, * {@link java.nio.file.Path} and any other {@link URL}. - * + *
* This stream is NOT read into memory. So this implementation has good in memory efficieny. The validation process MAY * read the stream more than once. Make sure, that the {@link URL} points to fast I/O devices * diff --git a/src/main/java/de/kosit/validationtool/impl/input/SourceInput.java b/src/main/java/de/kosit/validationtool/impl/input/SourceInput.java index 0c6ffea..7866e97 100644 --- a/src/main/java/de/kosit/validationtool/impl/input/SourceInput.java +++ b/src/main/java/de/kosit/validationtool/impl/input/SourceInput.java @@ -35,7 +35,7 @@ import static org.apache.commons.lang3.StringUtils.defaultIfBlank; *
* Note: The various implementations of {@link Source} varies wether the can be read twice or no. This implementation * tries to handle this with respect document identification (hashcode). - * + *
* This class is known to work with: *
* Since the actual {@link Input} implementation may not be read twice, we must serialize the previously read document. * This implementation tries to do the validation in an efficient manner. If possible the source is read a second time * to validate. If not, the source is serialized to the heap upon re-read/validaiton up to a configurable file size. The