blob: 6252ca65e4d05366f36b6a22820e9c509b063196 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 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
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20060524 142635 gilberta@ca.ibm.com - Gilbert Andrews
* 20060529 141422 kathy@ca.ibm.com - Kathy Chan
* 20060727 144354 kathy@ca.ibm.com - Kathy Chan
*******************************************************************************/
package org.eclipse.jst.ws.internal.creation.ui.widgets;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jst.ws.internal.consumption.ui.widgets.ClientWizardWidgetOutputCommand;
import org.eclipse.jst.ws.internal.data.TypeRuntimeServer;
import org.eclipse.wst.command.internal.env.core.context.ResourceContext;
public class ServerWizardWidgetOutputCommand extends ClientWizardWidgetOutputCommand
{
private TypeRuntimeServer typeRuntimeServer_;
private boolean installService_;
private boolean startService_;
private boolean testService_;
private boolean testClient_;
private boolean runTestClient_;
private boolean publishService_;
private boolean generateProxy_;
private boolean developService_;
private boolean assembleService_;
private boolean deployService_;
private ResourceContext resourceContext_;
private IStructuredSelection selection_;
public TypeRuntimeServer getServiceTypeRuntimeServer()
{
return typeRuntimeServer_;
}
public boolean getInstallService()
{
return installService_;
}
public boolean getStartService()
{
return startService_;
}
public boolean getTestService()
{
return testService_;
}
public boolean getRunTestClient()
{
return runTestClient_;
}
public boolean getPublishService()
{
return publishService_;
}
public boolean getGenerateProxy()
{
return generateProxy_;
}
public ResourceContext getResourceContext()
{
return resourceContext_;
}
/**
* @param generateProxy_ The generateProxy_ to set.
*/
public void setGenerateProxy(boolean generateProxy_)
{
this.generateProxy_ = generateProxy_;
}
/**
* @param publishService_ The publishService_ to set.
*/
public void setPublishService(boolean publishService_)
{
this.publishService_ = publishService_;
}
/**
* @param installService_ The installService_ to set.
*/
public void setInstallService(boolean installService_)
{
this.installService_ = installService_;
}
/**
* @param startService_ The startService_ to set.
*/
public void setStartService(boolean startService_)
{
this.startService_ = startService_;
}
/**
* @param testService_ The testService_ to set.
*/
public void setTestService(boolean testService_)
{
this.testService_ = testService_;
}
/**
* @param testService_ The testService_ to set.
*/
public void setRunTestClient(boolean runTestClient_)
{
this.runTestClient_ = runTestClient_;
}
/**
* @param typeRuntimeServer_ The typeRuntimeServer_ to set.
*/
public void setServiceTypeRuntimeServer(TypeRuntimeServer typeRuntimeServer_)
{
this.typeRuntimeServer_ = typeRuntimeServer_;
}
public void setResourceContext(ResourceContext rc)
{
resourceContext_ = rc;
}
public void setObjectSelection(IStructuredSelection selection)
{
selection_ = selection;
}
public IStructuredSelection getObjectSelection()
{
return selection_;
}
public boolean getDevelopService() {
return developService_;
}
public void setDevelopService(boolean developService) {
this.developService_ = developService;
}
public boolean getAssembleService() {
return assembleService_;
}
public void setAssembleService(boolean assembleService) {
this.assembleService_ = assembleService;
}
public boolean getDeployService() {
return deployService_;
}
public void setDeployService(boolean deployService) {
this.deployService_ = deployService;
}
public boolean getTestClient() {
return testClient_;
}
public void setTestClient(boolean testClient_) {
this.testClient_ = testClient_;
}
}