Repository: cxf Updated Branches: refs/heads/3.0.x-fixes ca3d75211 -> fdce535ca
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/fdce535c Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/fdce535c Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/fdce535c Branch: refs/heads/3.0.x-fixes Commit: fdce535cad015205c7dbfc39af84fa5d89e23fd5 Parents: ca3d752 Author: Jason Pell <[email protected]> Authored: Tue Nov 18 13:03:00 2014 +1100 Committer: Jason Pell <[email protected]> Committed: Tue Nov 18 13:03:00 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/fdce535c/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 47da1c0..f95e4f3 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 @@ -64,11 +64,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.
