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 337a21142bed241dd5cb6cf0a3641a9d4397e76a Author: Bertrand Delacretaz <[email protected]> AuthorDate: Tue Jul 19 15:54:38 2016 +0000 SLING-5842, SLING-5843 - implement the register namespace and nodetype operations in the jcr.repoinit module git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/repoinit/parser@1753399 13f79535-47bb-0310-9956-ffa450edef68 --- .../sling/repoinit/parser/operations/RegisterNamespace.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/org/apache/sling/repoinit/parser/operations/RegisterNamespace.java b/src/main/java/org/apache/sling/repoinit/parser/operations/RegisterNamespace.java index b5a947b..bbdcbd5 100644 --- a/src/main/java/org/apache/sling/repoinit/parser/operations/RegisterNamespace.java +++ b/src/main/java/org/apache/sling/repoinit/parser/operations/RegisterNamespace.java @@ -43,4 +43,12 @@ public class RegisterNamespace extends Operation { public void accept(OperationVisitor v) { v.visitRegisterNamespace(this); } + + public String getPrefix() { + return prefix; + } + + public String getURI() { + return uri; + } } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
