blob: 33c27bf24874401857f3a91af567a80bbb4acc3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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.osgi.service.resolver;
import java.util.Dictionary;
/**
* A description of a generic capability.
* @since 3.2
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface GenericDescription extends BaseDescription {
/**
* The default type of generic capability.
*/
public static String DEFAULT_TYPE = "generic"; //$NON-NLS-1$
/**
* Returns the arbitrary attributes for this description
* @return the arbitrary attributes for this description
*/
public Dictionary getAttributes();
/**
* Returns the type of generic description capability
* @return the type of generic description capability
*/
public String getType();
}