blob: 9df509d0e119dfe5b3e8a30fd72fb9f2019057a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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 org.eclipse.equinox.p2.metadata.Version;
public interface IServerExtension {
public String getName() ;
public String getDescription() ;
public String getProvider() ;
public String getId() ;
public String getURI() ;
public Version getVersion() ;
}