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

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


The following commit(s) were added to refs/heads/master by this push:
     new fd631b2  set as ProviderType
fd631b2 is described below

commit fd631b2e5e3f2fa66dbb19c505b33a8617615a50
Author: Jason E Bailey <[email protected]>
AuthorDate: Mon Sep 3 11:55:44 2018 -0400

    set as ProviderType
---
 .../java/org/apache/sling/resource/filter/ResourceFilterStream.java     | 2 ++
 src/main/java/org/apache/sling/resource/filter/ResourcePredicates.java  | 2 ++
 src/main/java/org/apache/sling/resource/filter/ResourceStream.java      | 2 ++
 3 files changed, 6 insertions(+)

diff --git 
a/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java 
b/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java
index 2310881..ce9545c 100644
--- a/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java
+++ b/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java
@@ -20,12 +20,14 @@ import java.util.stream.Stream;
 
 import org.apache.sling.api.resource.Resource;
 import org.apache.sling.resource.filter.ResourceFilterStream;
+import org.osgi.annotation.versioning.ProviderType;
 
 /**
  * Creates a {@link Predicate} of type {@link Resource} to identify matching
  * Resource objects
  *
  */
+@ProviderType
 public class ResourceFilterStream {
 
     private ResourceStream resources;
diff --git 
a/src/main/java/org/apache/sling/resource/filter/ResourcePredicates.java 
b/src/main/java/org/apache/sling/resource/filter/ResourcePredicates.java
index a72436a..9a50750 100644
--- a/src/main/java/org/apache/sling/resource/filter/ResourcePredicates.java
+++ b/src/main/java/org/apache/sling/resource/filter/ResourcePredicates.java
@@ -22,12 +22,14 @@ import java.util.Map;
 import java.util.function.Predicate;
 
 import org.apache.sling.api.resource.Resource;
+import org.osgi.annotation.versioning.ProviderType;
 
 /**
  * Service which provides the ability to convert a String into a
  * Predicate<Resource> to match against Resource Objects
  *
  */
+@ProviderType
 public interface ResourcePredicates {
 
     /**
diff --git a/src/main/java/org/apache/sling/resource/filter/ResourceStream.java 
b/src/main/java/org/apache/sling/resource/filter/ResourceStream.java
index 67adf17..99f4d7b 100644
--- a/src/main/java/org/apache/sling/resource/filter/ResourceStream.java
+++ b/src/main/java/org/apache/sling/resource/filter/ResourceStream.java
@@ -24,12 +24,14 @@ import java.util.stream.Stream;
 import java.util.stream.StreamSupport;
 
 import org.apache.sling.api.resource.Resource;
+import org.osgi.annotation.versioning.ProviderType;
 
 /**
  * Utility to create a Stream<Resource> of Resource objects from a managed
  * traversal of a Resource tree
  *
  */
+@ProviderType
 public class ResourceStream {
 
     protected Resource resource;

Reply via email to