blob: c7ab16630c4c8c456c494d0cbf038fdadf8454b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 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() ;
public String getRuntimeVendor() ;
}