Closes gh-11536
This commit is contained in:
Johnny Lim
2018-01-08 09:02:38 +09:00
committed by Stephane Nicoll
parent 6ea6adb10e
commit 0f0c6e0729
8 changed files with 28 additions and 45 deletions

View File

@@ -98,7 +98,7 @@ public class ServerProperties {
*/
private Duration connectionTimeout;
private Session session = new Session();
private final Session session = new Session();
@NestedConfigurationProperty
private Ssl ssl;
@@ -109,7 +109,7 @@ public class ServerProperties {
@NestedConfigurationProperty
private final Http2 http2 = new Http2();
private Servlet servlet = new Servlet();
private final Servlet servlet = new Servlet();
private final Tomcat tomcat = new Tomcat();
@@ -181,10 +181,6 @@ public class ServerProperties {
return this.session;
}
public void setSession(Session session) {
this.session = session;
}
public Ssl getSsl() {
return this.ssl;
}
@@ -205,10 +201,6 @@ public class ServerProperties {
return this.servlet;
}
public void setServlet(Servlet servlet) {
this.servlet = servlet;
}
public Tomcat getTomcat() {
return this.tomcat;
}
@@ -242,7 +234,7 @@ public class ServerProperties {
private String path = "/";
@NestedConfigurationProperty
private Jsp jsp = new Jsp();
private final Jsp jsp = new Jsp();
public String getContextPath() {
return this.contextPath;
@@ -276,10 +268,6 @@ public class ServerProperties {
return this.jsp;
}
public void setJsp(Jsp jsp) {
this.jsp = jsp;
}
public String getServletMapping() {
if (this.path.equals("") || this.path.equals("/")) {
return "/";
@@ -359,7 +347,7 @@ public class ServerProperties {
*/
private File storeDir;
private Cookie cookie = new Cookie();
private final Cookie cookie = new Cookie();
public Cookie getCookie() {
return this.cookie;