blob: b3950c998d29bcee1c6ee4aa2cfa587a9f0a0dd3 [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.internal.resolver;
import org.eclipse.osgi.service.resolver.BundleSpecification;
public class BundleSpecificationImpl extends VersionConstraintImpl implements BundleSpecification {
private boolean exported;
private boolean optional;
public void setExported(boolean exported) {
this.exported = exported;
}
public void setOptional(boolean optional) {
this.optional = optional;
}
public boolean isExported() {
return exported;
}
public boolean isOptional() {
return optional;
}
}