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 0B590200D35 for ; Tue, 7 Nov 2017 10:47:04 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0A009160C10; Tue, 7 Nov 2017 09:47:04 +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 74A0A160C20 for ; Tue, 7 Nov 2017 10:47:00 +0100 (CET) Received: (qmail 40653 invoked by uid 500); 7 Nov 2017 09:46:59 -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 40156 invoked by uid 99); 7 Nov 2017 09:46:58 -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:46:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 989C687A25; Tue, 7 Nov 2017 09:46:58 +0000 (UTC) Date: Tue, 07 Nov 2017 09:48:13 +0000 To: "commits@sling.apache.org" Subject: [sling-org-apache-sling-jcr-davex] 06/08: SLING-4919 : Require configuration for webdav related services MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: rombert@apache.org In-Reply-To: <151004801378.1156.17741330799334572715@gitbox.apache.org> References: <151004801378.1156.17741330799334572715@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: sling-org-apache-sling-jcr-davex X-Git-Refname: refs/tags/org.apache.sling.jcr.davex-1.3.0 X-Git-Reftype: annotated tag X-Git-Rev: c2bdf749dfd1081dfab6bf7b3e97fd9f3e14552d X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20171107094658.989C687A25@gitbox.apache.org> archived-at: Tue, 07 Nov 2017 09:47:04 -0000 This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.jcr.davex-1.3.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-davex.git commit c2bdf749dfd1081dfab6bf7b3e97fd9f3e14552d Author: Carsten Ziegeler AuthorDate: Thu Jul 30 15:31:04 2015 +0000 SLING-4919 : Require configuration for webdav related services git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/davex@1693441 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java index ef3319a..a215bea 100644 --- a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java +++ b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java @@ -30,6 +30,7 @@ import javax.servlet.http.HttpServletRequest; import org.apache.felix.scr.annotations.Activate; import org.apache.felix.scr.annotations.Component; +import org.apache.felix.scr.annotations.ConfigurationPolicy; import org.apache.felix.scr.annotations.Deactivate; import org.apache.felix.scr.annotations.Properties; import org.apache.felix.scr.annotations.Property; @@ -54,7 +55,9 @@ import org.slf4j.LoggerFactory; * */ @SuppressWarnings("serial") -@Component(metatype = true, label = "%dav.name", description = "%dav.description") +@Component(metatype = true, label = "%dav.name", + description = "%dav.description", + policy = ConfigurationPolicy.REQUIRE) @Properties({ @Property(name = Constants.SERVICE_DESCRIPTION, value = "Sling JcrRemoting Servlet"), @Property(name = Constants.SERVICE_VENDOR, value = "The Apache Software Foundation") }) public class SlingDavExServlet extends JcrRemotingServlet { -- To stop receiving notification emails like this one, please contact "commits@sling.apache.org" .