You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/extending-neo4j/project-setup.adoc
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,7 +198,10 @@ public class CustomDatabaseSeedProvider implements DatabaseSeedProvider {
198
198
----
199
199
200
200
To implement the custom database seed provider, you must implement three methods on the top-level `DatabaseSeedProvider` interface.
201
-
One method to match the URIs it can manage, one to stream backups or dumps from the given URI, and one to inject dependencies in the provider.
201
+
* A method to match the URIs that the provider can manage.
202
+
* A method to stream backups or dumps from a specified URI.
203
+
* A method to inject dependencies in the provider.
204
+
202
205
Additionally, you must implement a method on the nested `Dependencies` interface to resolve any dependencies required by your seed provider implementation.
203
206
204
207
Typically, the match method uses the URI scheme (the part specified before the first colon) to determine whether it can support the given URI or not.
0 commit comments