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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,9 +192,9 @@ public class CustomDatabaseSeedProvider implements DatabaseSeedProvider {
192
192
}
193
193
----
194
194
195
-
To implement the custom database seed provider, you must implement three methods.
195
+
To implement the custom database seed provider, you must implement three methods on the top-level `DatabaseSeedProvider` interface.
196
196
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.
197
-
197
+
Additionally you must implement one method on the nested `Dependencies` interface, to resolve any dependencies required by your seed provider implementation.
198
198
199
199
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