Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/HostSpecification.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/HostSpecification.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/HostSpecification.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/HostSpecification.java
new file mode 100644
index 000000000..3f6a46fe7
--- /dev/null
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/HostSpecification.java
@@ -0,0 +1,35 @@
+/*******************************************************************************
+ * Copyright (c) 2003, 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;
+
+/**
+ * A representation of one host bundle constraint as seen in a
+ * bundle manifest and managed by a state and resolver.
+ * <p>
+ * This interface is not intended to be implemented by clients. The
+ * {@link StateObjectFactory} should be used to construct instances.
+ * </p>
+ * @since 3.1
+ * @noimplement This interface is not intended to be implemented by clients.
+ */
+public interface HostSpecification extends VersionConstraint {
+ /**
+ * Returns the list of host BundleDescriptions that satisfy this HostSpecification
+ * @return the list of host BundleDescriptions that satisfy this HostSpecification
+ */
+ public BundleDescription[] getHosts();
+
+ /**
+ * Returns if this HostSpecification is allowed to have multiple hosts
+ * @return true if this HostSpecification is allowed to have multiple hosts
+ */
+ public boolean isMultiHost();
+}

Back to the top