Skip to content

Commit

Permalink
chore(plugins): Replace PF4J ExtensionPoint with SpinnakerExtensionPo…
Browse files Browse the repository at this point in the history
…int (#889)
  • Loading branch information
jonsie committed May 6, 2020
1 parent 54d0344 commit c288392
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions echo-api/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# echo-api

This module provides API interfaces and models. In particular, it offers the following PF4J
`ExtensionPoint` interfaces for runtime extension:
This module provides API interfaces and models. In particular, it offers the following
`SpinnakerExtensionPoint` interfaces for runtime extension:

- [EventListener](src/main/java/com/netflix/spinnaker/echo/api/events/EventListener.java)
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@

package com.netflix.spinnaker.echo.api.events;

import org.pf4j.ExtensionPoint;
import com.netflix.spinnaker.kork.plugins.api.internal.SpinnakerExtensionPoint;

/**
* This is the main touch point for Echo. Implementations of `EventListener` will, if wired up as a
* Spring bean, process all events that are posted into Echo.
*/
public interface EventListener extends ExtensionPoint {
public interface EventListener extends SpinnakerExtensionPoint {

/** Process an Echo {@link Event} */
void processEvent(Event event);
Expand Down

0 comments on commit c288392

Please sign in to comment.