Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9bcbd247614d3acd673faa405f9439df39cd1c1b (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
/*******************************************************************************
 * 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_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 String[] getWebServiceTestTypes();
  public void setWebServiceTestTypes(String[] testTypes);
  
  public String getNonJavaTestService();
  
  public String getWebServiceType();
  public String getWebServiceTypeDefault();
  public void   setWebServiceType( String 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 ScenarioContext copy();
}

Back to the top