This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master by this push:
new ae1d2ee0 Merge mistakes fixes.
ae1d2ee0 is described below
commit ae1d2ee0765be57519591a28218e07183ccebadb
Author: Sergey Kamov <[email protected]>
AuthorDate: Fri Apr 8 22:31:09 2022 +0300
Merge mistakes fixes.
---
nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
index bc906b04..8415a873 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
@@ -108,4 +108,16 @@ public interface NCPipeline {
default Optional<NCVariantFilter> getVariantFilter() {
return Optional.empty();
}
+
+
+ /**
+ * TODO:
+ *
+ * Gets optional list of entity mappers.
+ *
+ * @return Optional list of entity mappers. Can be empty but never {@code
null}.
+ */
+ default List<NCEntityMapper> getEntityMappers() {
+ return Collections.emptyList();
+ }
}
\ No newline at end of file