@@ -20,67 +20,67 @@ interface IConfigCommon extends IConfiguration
2020 /**
2121 * Disable tracing.
2222 */
23- const TRACE_OFF = 0 ;
23+ public const TRACE_OFF = 0 ;
2424
2525 /**
2626 * Brief trace level.
2727 */
28- const TRACE_BRIEF = 1 ;
28+ public const TRACE_BRIEF = 1 ;
2929
3030 /**
3131 * Verbose trace level.
3232 */
33- const TRACE_VERBOSE = 2 ;
33+ public const TRACE_VERBOSE = 2 ;
3434
3535 /**
3636 * Full trace level.
3737 */
38- const TRACE_FULL = 3 ;
38+ public const TRACE_FULL = 3 ;
3939
4040 /**
4141 * The username to use for authentication.
4242 */
43- const JSON_USER = 'user ' ;
43+ public const JSON_USER = 'user ' ;
4444
4545 /**
4646 * The password to use for authentication.
4747 */
48- const JSON_PASSWD = 'passwd ' ;
48+ public const JSON_PASSWD = 'passwd ' ;
4949
5050 /**
5151 * The destination in RfcOpen.
5252 */
53- const JSON_CLIENT = 'client ' ;
53+ public const JSON_CLIENT = 'client ' ;
5454
5555 /**
5656 * If the connection needs to be made through a firewall using a SAPRouter,
5757 * specify the SAPRouter parameters in the following format:
5858 * /H/hostname/S/portnumber/H/
5959 */
60- const JSON_SAPROUTER = 'saprouter ' ;
60+ public const JSON_SAPROUTER = 'saprouter ' ;
6161
6262 /**
6363 * The trace level (0-3). See constants TRACE_*.
6464 */
65- const JSON_TRACE = 'trace ' ;
65+ public const JSON_TRACE = 'trace ' ;
6666
6767 /**
6868 * Only needed it if you want to connect to a non-Unicode backend using a
6969 * non-ISO-Latin-1 user name or password. The RFC library will then use that
7070 * codepage for the initial handshake, thus preserving the characters in
7171 * username/password.
7272 */
73- const JSON_CODEPAGE = 'codepage ' ;
73+ public const JSON_CODEPAGE = 'codepage ' ;
7474
7575 /**
7676 * The logon language.
7777 */
78- const JSON_LANG = 'lang ' ;
78+ public const JSON_LANG = 'lang ' ;
7979
8080 /**
8181 * The destination in RfcOpenConnection.
8282 */
83- const JSON_DEST = 'dest ' ;
83+ public const JSON_DEST = 'dest ' ;
8484
8585 /**
8686 * Get the username to use for authentication.
0 commit comments