You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2020/10/20 08:25:39 UTC

[sling-org-apache-sling-clam] branch master updated: add URI option

This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-clam.git


The following commit(s) were added to refs/heads/master by this push:
     new 90ca2f5  add URI option
90ca2f5 is described below

commit 90ca2f515b4c5f7d8c2a3278c4147b63aebfd114
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Tue Oct 20 10:25:21 2020 +0200

    add URI option
---
 .../clam/oak/internal/NodeObservingJcrPropertyDiggerConfiguration.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/clam/oak/internal/NodeObservingJcrPropertyDiggerConfiguration.java b/src/main/java/org/apache/sling/clam/oak/internal/NodeObservingJcrPropertyDiggerConfiguration.java
index f99c708..c85df8c 100644
--- a/src/main/java/org/apache/sling/clam/oak/internal/NodeObservingJcrPropertyDiggerConfiguration.java
+++ b/src/main/java/org/apache/sling/clam/oak/internal/NodeObservingJcrPropertyDiggerConfiguration.java
@@ -35,7 +35,8 @@ import org.osgi.service.metatype.annotations.Option;
         description = "Type of properties",
         options = {
             @Option(label = "Binary", value = "Binary"),
-            @Option(label = "String", value = "String")
+            @Option(label = "String", value = "String"),
+            @Option(label = "URI", value = "URI")
         }
     )
     String property_type() default "Binary";