Package prompto.config
Interface IServerConfiguration
-
- All Superinterfaces:
prompto.config.IRuntimeConfiguration
- All Known Implementing Classes:
IServerConfiguration.Inline,ServerConfiguration
public interface IServerConfiguration extends prompto.config.IRuntimeConfiguration
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIServerConfiguration.Inline
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IHttpConfigurationgetHttpConfiguration()StringgetServerAboutToStartMethod()StringgetWebSiteRoot()booleanuseConsole()<T extends IServerConfiguration>
TwithHttpConfiguration(IHttpConfiguration config)<T extends IServerConfiguration>
TwithServerAboutToStartMethod(String method)<T extends IServerConfiguration>
TwithUseConsole(boolean set)-
Methods inherited from interface prompto.config.IRuntimeConfiguration
getAddOnURLs, getApplicationName, getApplicationVersion, getArguments, getCodeStoreConfiguration, getDataStoreConfiguration, getDebugConfiguration, getResourceURLs, getRuntimeLibs, getRuntimeMode, isLoadRuntime, toYaml, withAddOnURLs, withApplicationName, withApplicationVersion, withCodeStoreConfiguration, withDataStoreConfiguration, withDebugConfiguration, withLoadRuntime, withResourceURLs, withRuntimeLibs, withRuntimeMode
-
-
-
-
Method Detail
-
getHttpConfiguration
IHttpConfiguration getHttpConfiguration()
-
getServerAboutToStartMethod
String getServerAboutToStartMethod()
-
getWebSiteRoot
String getWebSiteRoot()
-
useConsole
boolean useConsole()
-
withServerAboutToStartMethod
<T extends IServerConfiguration> T withServerAboutToStartMethod(String method)
-
withHttpConfiguration
<T extends IServerConfiguration> T withHttpConfiguration(IHttpConfiguration config)
-
withUseConsole
<T extends IServerConfiguration> T withUseConsole(boolean set)
-
-