View Javadoc

1   /*
2    *  soapUI, copyright (C) 2004-2007 eviware.com 
3    *
4    *  soapUI is free software; you can redistribute it and/or modify it under the 
5    *  terms of version 2.1 of the GNU Lesser General Public License as published by 
6    *  the Free Software Foundation.
7    *
8    *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
9    *  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  {
23  	public final static String JWSDP_WSCOMPILE_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "jwsdp_wscompile";
24  	public final static String JWSDP_WSIMPORT_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "jwsdp_wsimport";
25  	public final static String JBOSSWS_WSTOOLS_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "jbossws_wstools";
26  	public final static String JAVAC_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "javac"; 
27  	public final static String AXIS_1_X_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "axis_1_X";
28  	public final static String AXIS_2_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "axis_2";
29  	public final static String DOTNET_WSDL_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "dotnet_wsdl";
30  	public final static String XFIRE_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "xfire";
31  	public final static String CXF_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "cxf";
32  	public final static String ANT_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "ant";
33  	public final static String GSOAP_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "gsoap";
34  	public final static String XMLBEANS_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "xmlbeans";
35  	public final static String JAXB_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "jaxb";
36  	public final static String TCPMON_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "tcpmon";
37  	public static final String ORACLE_WSA_LOCATION = ToolsSettings.class.getSimpleName() + "@" + "wsa";
38  	//public static final String SCRIPT_LIBRARIES = ToolsSettings.class.getSimpleName() + "@" + "libraries";
39  }