Skip to main content
summaryrefslogtreecommitdiffstats
blob: aeb3c55b62b976dc3dd767a3f467b59429fbc795 (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
/*******************************************************************************
 * Copyright (c) 2001, 2004 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.platform.wsil.constants;

public class WsilActionInputs
{
    // open WSIL form
    public final static String WSIL_URL = "wsilURL";
    public final static String WSIL_INSPECTION_TYPE = "wsilInspectionType";
    public final static int WSIL_DETAILS = 0;
    public final static int WSDL_SERVICES = 1;
    public final static int UDDI_SERVICES = 2;
    public final static int UDDI_BUSINESSES = 3;
    public final static int WSIL_LINKS = 4;

    // mass action
    public final static String MULTIPLE_LINK_ACTION = "multipleLinkAction";

    // resize WSIL frames action
    public final static String FRAMESET_COLS_PERSPECTIVE_CONTENT = "framesetColsPerspectiveContent";
    public final static String FRAMESET_ROWS_ACTIONS_CONTAINER = "framesetRowsActionsContainer";
}

Back to the top