01: /*
02: * soapUI, copyright (C) 2004-2007 eviware.com
03: *
04: * soapUI is free software; you can redistribute it and/or modify it under the
05: * terms of version 2.1 of the GNU Lesser General Public License as published by
06: * the Free Software Foundation.
07: *
08: * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
09: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: * See the GNU Lesser General Public License for more details at gnu.org.
11: */
12:
13: package com.eviware.soapui.settings;
14:
15: /**
16: * Tools/Integration-related settings constants
17: *
18: * @author Ole.Matzura
19: */
20:
21: public interface ToolsSettings {
22: public final static String JWSDP_WSCOMPILE_LOCATION = ToolsSettings.class
23: .getSimpleName()
24: + "@" + "jwsdp_wscompile";
25: public final static String JWSDP_WSIMPORT_LOCATION = ToolsSettings.class
26: .getSimpleName()
27: + "@" + "jwsdp_wsimport";
28: public final static String JBOSSWS_WSTOOLS_LOCATION = ToolsSettings.class
29: .getSimpleName()
30: + "@" + "jbossws_wstools";
31: public final static String JAVAC_LOCATION = ToolsSettings.class
32: .getSimpleName()
33: + "@" + "javac";
34: public final static String AXIS_1_X_LOCATION = ToolsSettings.class
35: .getSimpleName()
36: + "@" + "axis_1_X";
37: public final static String AXIS_2_LOCATION = ToolsSettings.class
38: .getSimpleName()
39: + "@" + "axis_2";
40: public final static String DOTNET_WSDL_LOCATION = ToolsSettings.class
41: .getSimpleName()
42: + "@" + "dotnet_wsdl";
43: public final static String XFIRE_LOCATION = ToolsSettings.class
44: .getSimpleName()
45: + "@" + "xfire";
46: public final static String ANT_LOCATION = ToolsSettings.class
47: .getSimpleName()
48: + "@" + "ant";
49: public final static String GSOAP_LOCATION = ToolsSettings.class
50: .getSimpleName()
51: + "@" + "gsoap";
52: public final static String XMLBEANS_LOCATION = ToolsSettings.class
53: .getSimpleName()
54: + "@" + "xmlbeans";
55: public final static String JAXB_LOCATION = ToolsSettings.class
56: .getSimpleName()
57: + "@" + "jaxb";
58: public final static String TCPMON_LOCATION = ToolsSettings.class
59: .getSimpleName()
60: + "@" + "tcpmon";
61: public static final String ORACLE_WSA_LOCATION = ToolsSettings.class
62: .getSimpleName()
63: + "@" + "wsa";
64: //public static final String SCRIPT_LIBRARIES = ToolsSettings.class.getSimpleName() + "@" + "libraries";
65: }
|