blob: 01ded490faa5be81e6bdb587a133358dd5188723 [file] [log] [blame]
package org.eclipse.wst.common.componentcore.internal.operation;
/*******************************************************************************
* Copyright (c) 2008 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
*******************************************************************************/
import java.util.Set;
import org.eclipse.wst.common.componentcore.datamodel.properties.IServerContextRootDataModelProperties;
import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelProvider;
import org.eclipse.wst.common.frameworks.datamodel.IDataModelOperation;
public class ServerContextRootDataModelProvider
extends AbstractDataModelProvider
implements IServerContextRootDataModelProperties{
public ServerContextRootDataModelProvider(){
super();
}
public Set getPropertyNames() {
Set names = super.getPropertyNames();
names.add(PROJECT);
names.add(CONTEXT_ROOT);
return names;
}
public IDataModelOperation getDefaultOperation() {
return new ServerContextRootUpdateOperation(model);
}
}