blob: 01b9b332e1576838159bc5350c663de557de69d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.service.resolver;
/**
* A representation of one bundle import constraint as seen in a
* bundle manifest and managed by a state and resolver.
*/
public interface BundleSpecification extends VersionConstraint {
// TODO add javadoc.
public boolean isExported(); // TODO should be isReprovided?
public boolean isOptional();
}