-
-
Notifications
You must be signed in to change notification settings - Fork 490
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed typos and updated SearchManager to EsSearchManager in core readme
- Loading branch information
1 parent
609389b
commit 97c8e5e
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
The core module contains the core Geonetwork classes. For example SearchManager for searching the metadata index, DataManager for saving | ||
The core module contains the core Geonetwork classes. For example, EsSearchManager for searching the metadata index, DataManager for saving | ||
and loading Metadata. | ||
|
||
Services, Harvesters, etc... that are are plugins will usually depend on core and will make use of these core classes to implement their | ||
Services, Harvesters, etc... that are plugins will usually depend on core and will make use of these core classes to implement their | ||
services. | ||
|
||
Geonetwork is wired together via Spring-Dependency-Injection. The critical classes (DataManager, SchemaManager, SearchManager, etc...) are | ||
Geonetwork is wired together via Spring-Dependency-Injection. The critical classes (DataManager, SchemaManager, EsSearchManager, etc...) are | ||
all singleton beans in the application context and can be either injected into other beans or obtained via the ServiceContext.getBean | ||
method (or ServiceContext.getApplicationContext()). | ||
method (or ServiceContext.getApplicationContext()). |