Skip to content

Commit

Permalink
Merge pull request #81 from PalladioSimulator/separate_services
Browse files Browse the repository at this point in the history
Update extension point identifiers
  • Loading branch information
FloBoJa authored May 27, 2024
2 parents d32c46f + c2f2e9a commit a0c1cb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit a0c1cb3

Please sign in to comment.