Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update extension point identifiers #81

Merged
merged 2 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import org.palladiosimulator.retriever.services.ServiceCollection;

public class AnalystCollection implements ServiceCollection<Analyst> {
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<Analyst> analysts = new HashSet<>();

public AnalystCollection() throws CoreException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.palladiosimulator.retriever.services.ServiceCollection;

public class DiscovererCollection implements ServiceCollection<Discoverer> {
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> discoverer = new HashSet<>();

public DiscovererCollection() throws CoreException, InvalidRegistryObjectException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.palladiosimulator.retriever.services.ServiceCollection;

public class RuleCollection implements ServiceCollection<Rule> {
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<Rule> rules = new HashSet<>();

public RuleCollection() throws CoreException {
Expand Down