| .. | .. |
|---|
| 23 | 23 | public class SecurisModule extends AbstractModule { |
|---|
| 24 | 24 | |
|---|
| 25 | 25 | private static final int DEFAULT_PORT = 9997; |
|---|
| 26 | | - private static final String PROPERTIES_FILE_NAME = "/server.properties"; |
|---|
| 26 | + private static final String PROPERTIES_FILE_NAME = "/securis-server.properties"; |
|---|
| 27 | 27 | |
|---|
| 28 | 28 | private static final Logger LOG = LogManager.getLogger(SecurisModule.class); |
|---|
| 29 | 29 | |
|---|
| .. | .. |
|---|
| 127 | 127 | @Singleton |
|---|
| 128 | 128 | public String getHashLogo() { |
|---|
| 129 | 129 | return "1b42616809d4cd8ccf109e3c30d0ab25067f160b30b7354a08ddd563de0096ba"; |
|---|
| 130 | | - } |
|---|
| 131 | | - |
|---|
| 132 | | - @Named("license-req-file-name") |
|---|
| 133 | | - @Provides |
|---|
| 134 | | - @Singleton |
|---|
| 135 | | - public String getLicenseReqFileName() { |
|---|
| 136 | | - return "license.req"; |
|---|
| 137 | | - } |
|---|
| 138 | | - |
|---|
| 139 | | - @Named("license-file-name") |
|---|
| 140 | | - @Provides |
|---|
| 141 | | - @Singleton |
|---|
| 142 | | - public String getLicenseFileName() { |
|---|
| 143 | | - return "license.lic"; |
|---|
| 144 | 130 | } |
|---|
| 145 | 131 | |
|---|
| 146 | 132 | @Provides |
|---|