-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #243 from eclipse-passage/564282
564282 API revision: question extensibility
- Loading branch information
Showing
55 changed files
with
1,220 additions
and
299 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
...g.eclipse.passage.lic.api/src/org/eclipse/passage/lic/internal/api/FrameworkSupplier.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.eclipse.passage.lic.internal.api; | ||
|
||
import java.util.Optional; | ||
import java.util.function.Supplier; | ||
|
||
public interface FrameworkSupplier extends Supplier<Optional<Framework>> { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...passage.lic.base/src/org/eclipse/passage/lic/internal/base/registry/ReadOnlyRegistry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2020 ArSysOp | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* https://www.eclipse.org/legal/epl-2.0/. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* ArSysOp - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.passage.lic.internal.base.registry; | ||
|
||
import java.util.Collection; | ||
|
||
import org.eclipse.passage.lic.internal.api.registry.Service; | ||
import org.eclipse.passage.lic.internal.api.registry.ServiceId; | ||
|
||
@SuppressWarnings("restriction") | ||
public final class ReadOnlyRegistry<I extends ServiceId, S extends Service<I>> extends BaseRegistry<I, S> { | ||
|
||
public ReadOnlyRegistry(Collection<S> service) { | ||
super(service); | ||
} | ||
|
||
} |
8 changes: 0 additions & 8 deletions
8
...assage.lic.equinox/OSGI-INF/org.eclipse.passage.lic.internal.equinox.EquinoxFramework.xml
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...OSGI-INF/org.eclipse.passage.lic.internal.equinox.EquinoxResolvedRequirementsRegistry.xml
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...nox/OSGI-INF/org.eclipse.passage.lic.internal.equinox.requirements.BundleRequirements.xml
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
.../OSGI-INF/org.eclipse.passage.lic.internal.equinox.requirements.ComponentRequirements.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 0 additions & 47 deletions
47
...nox/src/org/eclipse/passage/lic/internal/equinox/EquinoxResolvedRequirementsRegistry.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.