Package de.xima.fc.common.fs
Class FSConfigurableProperties
- java.lang.Object
-
- de.xima.fc.common.fs.FSConfigurableProperties
-
- All Implemented Interfaces:
Serializable
public class FSConfigurableProperties extends Object implements Serializable
Contains the configuration of the frontend server that can be edited via the backend UI.- Since:
- 8.3.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FSConfigurableProperties()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ErrorPagesConfig
getErrorPagesConfig()
Gets the configuration of error pages for the frontend server.static FSConfigurableProperties
loadFromProperties()
Loads the configuration from the properties file.void
saveToProperties()
Saves the configuration to the properties file.void
setErrorPagesConfig(ErrorPagesConfig errorPagesConfig)
Sets the configuration of error pages for the frontend server.
-
-
-
Method Detail
-
getErrorPagesConfig
public ErrorPagesConfig getErrorPagesConfig()
Gets the configuration of error pages for the frontend server. Pulled from the frontend server. Can be edited via the backend UI.- Returns:
- The error pages configuration.
-
setErrorPagesConfig
public void setErrorPagesConfig(ErrorPagesConfig errorPagesConfig)
Sets the configuration of error pages for the frontend server. Pulled from the frontend server. Can be edited via the backend UI.- Parameters:
errorPagesConfig
- The error pages configuration.
-
saveToProperties
public void saveToProperties()
Saves the configuration to the properties file.
-
loadFromProperties
public static FSConfigurableProperties loadFromProperties()
Loads the configuration from the properties file.- Returns:
- The loaded configuration.
-
-