Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6f8725edd62968308ba55d851c82cc1b178920a0 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*******************************************************************************
 * Copyright (c) 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.jst.ws.internal.context;

public interface ScenarioContext 
{
  public final String PREFERENCE_WEBSERVICE_TEST_TYPES = "webServiceTestTypes";
    
  public final String PREFERENCE_NON_JAVA_TEST_SERVICE= "nonJavaTestService";
  
  public final String PREFERENCE_WEBSERVICE_TYPE = "webServiceType";
  
  public final String PREFERENCE_START_WEBSERVICE = "startWebService";
  
  public final String PREFERENCE_INSTALL_WEBSERVICE = "installWebService";
  
  public final String PREFERENCE_INSTALL_CLIENT = "installClient";
  
  public final String PREFERENCE_LAUNCH_WEBSERVICE_EXPLORER = "launchWebServiceExplorer";
  
  public final String PREFERENCE_GENERATE_PROXY = "generateProxy";
  
  public final String PREFERENCE_CLIENT_WEBSERVICE_TYPE = "clientWebServiceType";
  
  public final String PREFERENCE_TEST_WEBSERVICE = "testWebService";
  
  public final String PREFERENCE_MONITOR_WEBSERVICE = "monitorWebService";
  
  public final String PREFERENCE_LAUNCH_SAMPLE = "launchSample";
  
  public final String PREFERENCE_GENERATE_WEBSERVICE = "generateWebService"; //jvh
  public final String PREFERENCE_GENERATE_CLIENT = "generateClient"; //jvh  
  
  public final static int WS_TEST=0;
  public final static int WS_START=1;
  public final static int WS_INSTALL=2;
  public final static int WS_DEPLOY=3;  
  public final static int WS_ASSEMBLE=4;
  public final static int WS_DEVELOP=5;  
  public final static int WS_NONE=6;
  
  public String[] getWebServiceTestTypes();
  public void setWebServiceTestTypes(String[] testTypes);
  
  public String[] getNonJavaTestService();
  
  public String getWebServiceType();
  public String getWebServiceTypeDefault();
  public void   setWebServiceType( String value );
  
  public boolean getInstallWebService();
  public boolean getInstallWebServiceDefault();
  public void    setInstallWebService( boolean value );
  
  public boolean getInstallClient();
  public boolean getInstallClientDefault();
  public void    setInstallClient( boolean value );
    
  public boolean getStartWebService();
  public boolean getStartWebServiceDefault();
  public void    setStartWebService( boolean value );
  
  public boolean getLaunchWebServiceExplorer();
  public boolean getLaunchWebServiceExplorerDefault();
  public void    setLaunchWebServiceExplorer( boolean value );
  
  public boolean getGenerateProxy();
  public boolean getGenerateProxyDefault();
  public void    setGenerateProxy( boolean value );
  
  public String getClientWebServiceType();
  public String getClientWebServiceTypeDefault();
  public void   setClientWebServiceType( String value );
  
  public boolean getTestWebService();
  public boolean getTestWebServiceDefault();
  public void    setTestWebService( boolean value );
  
  public boolean getMonitorWebService();
  public boolean getMonitorWebServiceDefault();
  public void setMonitorWebService(boolean value);
  
  public boolean isLaunchSampleEnabled();
  public boolean getLaunchSampleEnabledDefault();
  public void    setLaunchSampleEnabled( boolean value );
  
  public int getGenerateWebServiceDefault();
  public int getGenerateWebService();
  public void setGenerateWebService(int value);
  
  public int getGenerateClientDefault();
  public int getGenerateClient();
  public void setGenerateClient(int value);
  
  public ScenarioContext copy();
}

Back to the top