Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E40EA10D48 for ; Tue, 18 Nov 2014 02:03:49 +0000 (UTC) Received: (qmail 12370 invoked by uid 500); 18 Nov 2014 02:03:49 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 12306 invoked by uid 500); 18 Nov 2014 02:03:49 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 12297 invoked by uid 99); 18 Nov 2014 02:03:49 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Nov 2014 02:03:49 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 87A12991516; Tue, 18 Nov 2014 02:03:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jpell@apache.org To: commits@cxf.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: CXF-5640 change visibility of property so it can be used from java Date: Tue, 18 Nov 2014 02:03:49 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master bd7babd65 -> f44588951 CXF-5640 change visibility of property so it can be used from java Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f4458895 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f4458895 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f4458895 Branch: refs/heads/master Commit: f44588951fbd8d458c39e0f4d085c8c0da186816 Parents: bd7babd Author: Jason Pell Authored: Tue Nov 18 13:03:00 2014 +1100 Committer: Jason Pell Committed: Tue Nov 18 13:03:39 2014 +1100 ---------------------------------------------------------------------- .../apache/cxf/transport/http_jetty/JettyHTTPServerEngine.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/f4458895/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngine.java ---------------------------------------------------------------------- diff --git a/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngine.java b/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngine.java index 54e8e9a..405e81a 100644 --- a/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngine.java +++ b/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngine.java @@ -81,11 +81,11 @@ import org.eclipse.jetty.util.thread.ThreadPool; * work off of a designated port. The port will be enabled for * "http" or "https" depending upon its successful configuration. */ -public class JettyHTTPServerEngine - implements ServerEngine { +public class JettyHTTPServerEngine implements ServerEngine { + public static final String DO_NOT_CHECK_URL_PROP = "org.apache.cxf.transports.http_jetty.DontCheckUrl"; private static final Logger LOG = LogUtils.getL7dLogger(JettyHTTPServerEngine.class); - private static final String DO_NOT_CHECK_URL_PROP = "org.apache.cxf.transports.http_jetty.DontCheckUrl"; + /** * This is the network port for which this engine is allocated.