Skip to main content
summaryrefslogtreecommitdiffstats
blob: 392f03b119664cb47dbf6aff72b56b5d4ed96790 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
 * Copyright (c) 2002, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.explorer;

/**
 * @author cbrealey@ca.ibm.com
 * 
 * This class defines the property names understood by the Web Services Explorer
 * and used to configure it's initial appearance and behaviour at the time it is
 * launched.
 * @see LaunchOption
 */
public class LaunchOptions {
	// General purpose preload constants
	
	public static final String STATE_LOCATION = "stateLocation";
	
	public static final String DEFAULT_FAVORITES_LOCATION = "defaultFavoritesLocation";
	
	// WSDL Page preload constants

	public static final String WSDL_URL = "wsdl";

	public static final String WEB_SERVICE_ENDPOINT = "webServiceEndpoint";

	public static final String SERVICE_QNAME_STRING = "serviceQNameString";

	public static final String BINDING_NAME_STRING = "bindingNameString";

	// UDDI Page preload constants

	public static final String INQUIRY_URL = "inquiry";

	public static final String PUBLISH_URL = "publish";

	public static final String SERVICE_NAME = "serviceName";

	public static final String SERVICE_KEY = "serviceKey";

	public static final String CATEGORIES_DIRECTORY = "categoriesDirectory";
}

Back to the top