blob: e2499d1fe5940d229453a7967eaa5d490eb6a806 [file] [log] [blame]
/*******************************************************************************
* 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
*******************************************************************************/
package org.eclipse.wst.server.discovery.internal.model;
import java.util.List;
public interface IExtensionSite {
public abstract String getUrl();
public abstract String getFeatureId();
public abstract List<String> getCategories();
}