Skip to content

Commit 89a5f2b

Browse files
committed
Mentioned nested interface
1 parent 95ca24e commit 89a5f2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ROOT/pages/extending-neo4j/project-setup.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ public class CustomDatabaseSeedProvider implements DatabaseSeedProvider {
192192
}
193193
----
194194

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.
196196
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.
198198

199199
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.
200200
For example, `file`, `http`, `https` etc.

0 commit comments

Comments
 (0)