This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch develop-0.7.5
in repository
https://gitbox.apache.org/repos/asf/incubator-nlpcraft-java-client.git
The following commit(s) were added to refs/heads/develop-0.7.5 by this push:
new 78308ef WIP.
78308ef is described below
commit 78308ef175a7ab3646c075c000a1f9bb5fdf54be
Author: Sergey Kamov <[email protected]>
AuthorDate: Tue May 11 13:52:06 2021 +0300
WIP.
---
src/main/java/org/apache/nlpcraft/client/NCClient.java | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/nlpcraft/client/NCClient.java
b/src/main/java/org/apache/nlpcraft/client/NCClient.java
index 57658e2..d05269b 100644
--- a/src/main/java/org/apache/nlpcraft/client/NCClient.java
+++ b/src/main/java/org/apache/nlpcraft/client/NCClient.java
@@ -467,7 +467,7 @@ public interface NCClient {
* @param adminFirstName Optional company administrator first name.
* @param adminLastName Optional company administrator last name.
* @param adminAvatarUrl Optional company administrator avatar URL.
- * @param props TODO:
+ * @param properties TODO:
* @return New company data.
* @throws NCClientException Thrown in case of client-specific errors.
* @throws IOException Thrown in case of generic I/O errors.
@@ -485,7 +485,7 @@ public interface NCClient {
String adminFirstName,
String adminLastName,
String adminAvatarUrl,
- Map<String, String> props
+ Map<String, String> properties
) throws NCClientException, IOException;
/**
@@ -509,6 +509,7 @@ public interface NCClient {
* @param city Optional company address city.
* @param address Optional company address.
* @param postalCode Optional company address postal code.
+ * @param properties TODO:
* @throws NCClientException Thrown in case of client-specific errors.
* @throws IOException Thrown in case of generic I/O errors.
*/
@@ -520,7 +521,7 @@ public interface NCClient {
String city,
String address,
String postalCode,
- Map<String, String> props // TODO:
+ Map<String, String> properties
) throws NCClientException, IOException;
/**