This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.repoinit.parser-1.0.4 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-repoinit-parser.git
commit a9f71de59bf57b274e5886dbf5b276a3d792853d Author: Oliver Lietz <[email protected]> AuthorDate: Fri Jul 29 06:55:36 2016 +0000 fix javadoc, style git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/repoinit/parser@1754480 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/sling/repoinit/parser/RepoInitParser.java | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/sling/repoinit/parser/RepoInitParser.java b/src/main/java/org/apache/sling/repoinit/parser/RepoInitParser.java index 8fe70eb..a975931 100644 --- a/src/main/java/org/apache/sling/repoinit/parser/RepoInitParser.java +++ b/src/main/java/org/apache/sling/repoinit/parser/RepoInitParser.java @@ -23,12 +23,17 @@ import java.util.List; import org.apache.sling.repoinit.parser.operations.Operation; -/** ACL definitions parser service interface */ +/** + * repoinit parser service interface + */ public interface RepoInitParser { - /** Parse the supplied input. - * @param r Input in ACL definitions format. The reader is closed - * by this method. - * @throws AclParsingException on parsing errors + + /** + * Parse the supplied input. + * + * @param reader Input in repoinit format. The reader is closed by this method. + * @throws RepoInitParsingException on parsing errors */ - List<Operation> parse(Reader r) throws RepoInitParsingException; + List<Operation> parse(Reader reader) throws RepoInitParsingException; + } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
