Skip to content

Commit f85d3a6

Browse files
committed
Add JavaDoc links
Signed-off-by: Florian Hotze <dev@florianhotze.com>
1 parent a03b668 commit f85d3a6

1 file changed

Lines changed: 23 additions & 10 deletions

File tree

  • distributions/openhab/src/main/resources/runtime/etc

distributions/openhab/src/main/resources/runtime/etc/jetty.xml

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
<Configure id="Server" class="org.eclipse.jetty.server.Server">
1313

14-
<!-- =========================================================== -->
14+
<!-- =========================================================================================================== -->
1515
<!-- Set handler Collection Structure -->
16-
<!-- =========================================================== -->
16+
<!-- =========================================================================================================== -->
1717

1818
<Get name="handler">
1919
<Call name="addHandler">
@@ -98,14 +98,20 @@
9898
</Call>
9999
</New>
100100

101-
<!-- =========================================================== -->
101+
<!-- =========================================================================================================== -->
102102
<!-- extra options -->
103-
<!-- =========================================================== -->
103+
<!-- =========================================================================================================== -->
104104
<Set name="stopAtShutdown">true</Set>
105105
<Set name="stopTimeout">1000</Set>
106106
<Set name="dumpAfterStart">false</Set>
107107
<Set name="dumpBeforeStop">false</Set>
108108

109+
<!-- =========================================================================================================== -->
110+
<!-- Configure the SSL parameters of the server -->
111+
<!-- -->
112+
<!-- JavaDoc of o.e.j.u.s.SslContextFactory.Server can be found at: -->
113+
<!-- https://javadoc.jetty.org/jetty-9/org/eclipse/jetty/util/ssl/SslContextFactory.Server.html -->
114+
<!-- =========================================================================================================== -->
109115
<New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory$Server">
110116
<Set name="KeyStorePath"><SystemProperty name="jetty.keystore.path" default="/etc/myKeystore" /></Set>
111117
<Set name="KeyStorePassword"><SystemProperty name="jetty.ssl.password" default="OBF:1uh81uha1toc1wn31toi1ugg1ugi" /></Set>
@@ -118,17 +124,24 @@
118124
</New>
119125

120126

121-
<!-- =========================================================== -->
127+
<!-- =========================================================================================================== -->
122128
<!-- Add a HTTPS Connector. -->
123129
<!-- Configure an o.e.j.server.ServerConnector with connection -->
124130
<!-- factories for TLS (aka SSL) and HTTP to provide HTTPS. -->
125131
<!-- All accepted TLS connections are wired to a HTTP connection. -->
126132
<!-- -->
127-
<!-- Consult the javadoc of o.e.j.server.ServerConnector, -->
128-
<!-- o.e.j.server.SslConnectionFactory and -->
129-
<!-- o.e.j.server.HttpConnectionFactory for all configuration -->
130-
<!-- that may be set here. -->
131-
<!-- =========================================================== -->
133+
<!-- Consult the JavaDoc of o.e.j.server.ServerConnector at -->
134+
<!-- https://javadoc.jetty.org/jetty-9/org/eclipse/jetty/server/ServerConnector.html, -->
135+
<!-- o.e.j.server.SslConnectionFactory at -->
136+
<!-- https://javadoc.jetty.org/jetty-9/org/eclipse/jetty/server/SslConnectionFactory.html, -->
137+
<!-- o.e.j.a.s.ALPNServerConnectionFactory at -->
138+
<!-- https://javadoc.jetty.org/jetty-9/org/eclipse/jetty/alpn/server/ALPNServerConnectionFactory.html, -->
139+
<!-- o.e.j.h2.s.HTTP2ServerConnectionFactory at -->
140+
<!-- https://javadoc.jetty.org/jetty-9/org/eclipse/jetty/http2/server/HTTP2ServerConnectionFactory.html and -->
141+
<!-- o.e.j.s.HttpConnectionFactory at -->
142+
<!-- https://javadoc.jetty.org/jetty-9/org/eclipse/jetty/server/HttpConnectionFactory.html -->
143+
<!-- for all configuration that may be set here. -->
144+
<!-- =========================================================================================================== -->
132145
<Call name="addConnector">
133146
<Arg>
134147
<New class="org.eclipse.jetty.server.ServerConnector" id="sslConnectorId">

0 commit comments

Comments
 (0)