Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A57BB200D41 for ; Tue, 7 Nov 2017 10:57:54 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A4397160C0C; Tue, 7 Nov 2017 09:57:54 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 19C76160C03 for ; Tue, 7 Nov 2017 10:57:52 +0100 (CET) Received: (qmail 33982 invoked by uid 500); 7 Nov 2017 09:57:51 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 33001 invoked by uid 99); 7 Nov 2017 09:57:51 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2017 09:57:51 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 08C0287AF0; Tue, 7 Nov 2017 09:57:51 +0000 (UTC) Date: Tue, 07 Nov 2017 09:58:25 +0000 To: "commits@sling.apache.org" Subject: [sling-org-apache-sling-repoinit-parser] 08/10: fix javadoc, style MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: rombert@apache.org In-Reply-To: <151004866922.16849.6498224233622803165@gitbox.apache.org> References: <151004866922.16849.6498224233622803165@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: sling-org-apache-sling-repoinit-parser X-Git-Refname: refs/tags/org.apache.sling.repoinit.parser-1.0.4 X-Git-Reftype: annotated tag X-Git-Rev: a9f71de59bf57b274e5886dbf5b276a3d792853d X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20171107095751.08C0287AF0@gitbox.apache.org> archived-at: Tue, 07 Nov 2017 09:57:54 -0000 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 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 parse(Reader r) throws RepoInitParsingException; + List parse(Reader reader) throws RepoInitParsingException; + } -- To stop receiving notification emails like this one, please contact "commits@sling.apache.org" .