[java-metadata-aggregator] branch master updated: JPAR-115 - Javadoc fixes
Ian Young
ian at iay.org.uk
Tue Nov 27 12:43:15 EST 2018
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch master
in repository java-metadata-aggregator.
View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=67abe31897aea3cc11b049305a627e19b0b93c86
The following commit(s) were added to refs/heads/master by this push:
new 67abe31 JPAR-115 - Javadoc fixes
67abe31 is described below
commit 67abe31897aea3cc11b049305a627e19b0b93c86
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Tue Nov 27 17:43:08 2018 +0000
JPAR-115 - Javadoc fixes
---
.../metadata/dom/AbstractXSLProcessingStage.java | 30 +++++++++++++++-------
1 file changed, 21 insertions(+), 9 deletions(-)
diff --git a/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/AbstractXSLProcessingStage.java b/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/AbstractXSLProcessingStage.java
index 8a1e36f..1df70de 100644
--- a/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/AbstractXSLProcessingStage.java
+++ b/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/AbstractXSLProcessingStage.java
@@ -313,15 +313,27 @@ public abstract class AbstractXSLProcessingStage extends AbstractStage<Element>
}
/**
- * {@link Transformer} {@link ErrorListener} that sets an {@link ErrorStatus} or {@link WarningStatus} on its
- * {@link Item} depending on the {@link TransformerException} message. If the message begins with
- * {@value #ERROR_PREFIX} the remainder of the error message is used as the message for the added
- * {@link ErrorStatus}. If the message begins with {@value #WARN_PREFIX} the remainder of the error message is used
- * as the message for the added {@link WarningStatus}. If the message begins with {@value #INFO_PREFIX} the
- * remainder of the error message is used as the message for the added {@link InfoStatus}. If the message does not
- * begin with either prefix the exception is re-thrown to be handed by the {@link Transformer}.
- *
- * This listener works well in conjunction with <xsl:message>
+ * {@link Transformer} {@link ErrorListener} that sets an {@link ErrorStatus}, {@link WarningStatus} or
+ * {@link InfoStatus} on its {@link Item} depending on the {@link TransformerException} message.
+ *
+ * <ul>
+ * <li><p>If the message begins with
+ * {@value net.shibboleth.metadata.dom.AbstractXSLProcessingStage.StatusInfoAppendingErrorListener#ERROR_PREFIX}
+ * the remainder of the error message is used as the message for the added {@link ErrorStatus}.</p></li>
+ *
+ * <li><p>If the message begins with
+ * {@value net.shibboleth.metadata.dom.AbstractXSLProcessingStage.StatusInfoAppendingErrorListener#WARN_PREFIX}
+ * the remainder of the error message is used as the message for the added {@link WarningStatus}.</p></li>
+ *
+ * <li><p>If the message begins with
+ * {@value net.shibboleth.metadata.dom.AbstractXSLProcessingStage.StatusInfoAppendingErrorListener#INFO_PREFIX}
+ * the remainder of the error message is used as the message for the added {@link InfoStatus}.</p></li>
+ * </ul>
+ *
+ * <p>If the message does not
+ * begin with any of the prefixes the exception is re-thrown to be handed by the {@link Transformer}.</p>
+ *
+ * <p>This listener works well in conjunction with <xsl:message>.</p>
*/
public class StatusInfoAppendingErrorListener implements ErrorListener {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list