The parameter names in the repository.cfg
file follow a hierarchical scheme. The format of parameters for services therefore follow this format:
<repository>.<service>.[etc]
For example:
ZQ.contentservice.proxy.primary.type
Syntax rules for repository.cfg file
This file is a Java property file. This explains the syntax rules all entries must comply with.
Comment:
All rows starting with #
(hash) are considered as comments and not executed.
#This is a comment
Parameter Assignment:
A value is assigned to a parameter by starting with the parameter name followed by a =
(equals) and then the value.
Space characters are ignored, so that these two example lines have identical effect.
name=Stephen name = Stephen
Path to directory or file:
The /
(slash) is not a special character and can be used unescaped. This allows Linux paths to be written in to the configuration file as is.
The \
(backslash), however, needs to be escaped as it is interpreted as escape character. So to use Windows paths in the configuration file, \\
(double backslash) needs to be used for each backslash in Windows paths.
Examples:
# A Linux path Directory=/var/coreoftia/config # A Windows path Directory=C:\\test\\repository # A UNC path Directory=\\\\10.9.8.7\\ARCHIVE