1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: PropertyName.java,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
33 * This interfaces describes some key names which are used in <CODE>lib.TestParameters</CODE>.
36 public interface PropertyName
{
38 * parameter name: "AppExecutionCommand"
40 final public static String APP_EXECUTION_COMMAND
= "AppExecutionCommand";
42 * parameter name: "AppKillCommand"
44 final public static String APP_KILL_COMMAND
= "AppKillCommand";
46 * parameter name: "ConnectionString"
48 final public static String CONNECTION_STRING
= "ConnectionString";
49 final public static String PIPE_CONNECTION_STRING
= "PipeConnectionString";
50 final public static String USE_PIPE_CONNECTION
= "UsePipeConnection";
53 * parameter name: "TestBase"
55 final public static String TEST_BASE
= "TestBase";
57 * parameter name: "TestDocumentPath"
59 final public static String TEST_DOCUMENT_PATH
= "TestDocumentPath";
61 * parameter name: "LoggingIsActive"
63 final public static String LOGGING_IS_ACTIVE
= "LoggingIsActive";
65 * parameter name: "DebugIsActive"
67 final public static String DEBUG_IS_ACTIVE
= "DebugIsActive";
69 * parameter name: "OutProduceer"
71 final public static String OUT_PRODUCER
= "OutProducer";
73 * parameter name: "ShortWait"
75 final public static String SHORT_WAIT
= "ShortWait";
77 * internal only, no parameter
79 final public static String OFFICE_PROVIDER
= "OfficeProvider";
81 * internal only, no parameter
83 final public static String OFFICE_WATCHER
= "Watcher";
85 * internal only, no parameter
87 final public static String LOG_WRITER
= "LogWriter";
89 * parameter name: "TimeOut"<p>
90 * time out given in milli seconds
92 final public static String TIME_OUT
= "TimeOut";
94 * parameter name: "ThreadTimeOut"
96 final public static String THREAD_TIME_OUT
= "ThreadTimeOut";
98 * parameter name: "OfficeCloseTimeOut"
100 final public static String OFFICE_CLOSE_TIME_OUT
= "OfficeCloseTimeOut";
102 * parameter name: "OperatingSystem"
104 final public static String OPERATING_SYSTEM
= "OperatingSystem";
106 * parameter name: "AutoRestart"
108 final public static String AUTO_RESTART
= "AutoRestart";
110 * parameter name: "NewOfficeInstance"
112 final public static String NEW_OFFICE_INSTANCE
= "NewOfficeInstance";
114 * parameter name: "KeepDocument"
116 final public static String KEEP_DOCUMENT
= "KeepDocument";
118 * parameter name: "SRC_ROOT"<p>
119 * path to the source root of OpenOffice.org
121 final public static String SRC_ROOT
= "SRC_ROOT";
123 * parameter name: "Version"<p>
124 * the name of the version to test
126 final public static String VERSION
= "Version";
129 * parameter name "Shell"<p>
131 * This shell is used to run some commands outside of Java
132 * example: /bin/tcsh c:\\myShell\\myShell.exe
134 final public static String SHELL
= "Shell";
136 * parameter name "Cygwin"<p>
137 * If Cygwin is set to TRUE it indicates if the runner runs in a Cygwin
140 final public static String CYGWIN
= "Cygwin";
142 * parameter name: "NoCwsAttach"<p>
143 * If this paraeter is set to "true" , a status of CWS-UnoAPI-Tests was not attached to EIS<p>
144 * @see tests.complex.unoapi.CheckModuleAPI
146 final public static String NO_CWS_ATTACH
= "NoCwsAttach";
148 * internal only, no parameter
150 final public static String WNTMSCI
= "wntmsci";
152 * internal only, no parameter
154 final public static String UNXLNGI
= "unxlngi";
156 * internal only, no parameter
158 final public static String UNXSOLS
= "unxsols";
160 * internal only, no parameter
162 final public static String UNXSOLI
= "unxsoli";
164 * internal only, no parameter
166 final public static String UNXMACXI
= "unxmacxi";
169 * can be used to dont backup the user layer, faster office start/stop but less secure default is to backup the user layer
171 final public static String DONT_BACKUP_USERLAYER
= "DontBackupUserLayer";