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 {