| | |
| | | package de.micromata.borgbutler.server; |
| | | |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | |
| | | private static String applicationHome; |
| | | |
| | | private int port; |
| | | @Getter |
| | | @Setter |
| | | private boolean showTestData = true; |
| | | private boolean webDevelopmentMode = false; |
| | | private boolean templatesDirModified = false; |
| | | |
| | |
| | | |
| | | public void copyFrom(ServerConfiguration other) { |
| | | this.port = other.port; |
| | | this.showTestData = other.showTestData; |
| | | this.webDevelopmentMode = other.webDevelopmentMode; |
| | | } |
| | | } |