From d0920f6ecc21462cf0be87e44f9081f06d84e3d1 Mon Sep 17 00:00:00 2001 From: Florian Bossert Date: Fri, 24 May 2024 16:50:08 +0200 Subject: [PATCH] Update extension point identifiers --- .../retriever/core/service/AnalystCollection.java | 2 +- .../retriever/core/service/DiscovererCollection.java | 2 +- .../retriever/core/service/RuleCollection.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/AnalystCollection.java b/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/AnalystCollection.java index 8b0894a1..2412019f 100644 --- a/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/AnalystCollection.java +++ b/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/AnalystCollection.java @@ -11,7 +11,7 @@ import org.palladiosimulator.retriever.services.ServiceCollection; public class AnalystCollection implements ServiceCollection { - public static final String EXTENSION_POINT = "org.palladiosimulator.retriever.extraction.analyst"; + public static final String EXTENSION_POINT = "org.palladiosimulator.retriever.services.analyst"; private final Set analysts = new HashSet<>(); public AnalystCollection() throws CoreException { diff --git a/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/DiscovererCollection.java b/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/DiscovererCollection.java index 4d42981b..d30dbceb 100644 --- a/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/DiscovererCollection.java +++ b/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/DiscovererCollection.java @@ -12,7 +12,7 @@ import org.palladiosimulator.retriever.services.ServiceCollection; public class DiscovererCollection implements ServiceCollection { - public static final String EXTENSION_POINT = "org.palladiosimulator.retriever.extraction.discoverer"; + public static final String EXTENSION_POINT = "org.palladiosimulator.retriever.services.discoverer"; private final Set discoverer = new HashSet<>(); public DiscovererCollection() throws CoreException, InvalidRegistryObjectException { diff --git a/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/RuleCollection.java b/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/RuleCollection.java index a65b6d4c..f8a56dab 100644 --- a/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/RuleCollection.java +++ b/bundles/org.palladiosimulator.retriever.core/src/org/palladiosimulator/retriever/core/service/RuleCollection.java @@ -10,7 +10,7 @@ import org.palladiosimulator.retriever.services.ServiceCollection; public class RuleCollection implements ServiceCollection { - public static final String EXTENSION_POINT = "org.palladiosimulator.retriever.extraction.rule"; + public static final String EXTENSION_POINT = "org.palladiosimulator.retriever.services.rule"; private final Set rules = new HashSet<>(); public RuleCollection() throws CoreException {