aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParshad Patel <pars.patel@samsung.com>2019-02-13 18:10:36 +0900
committerManzon, Inna (im453s) <im453s@intl.att.com>2019-02-27 17:35:18 +0200
commite4e4b6f8db3d1fade4648cb7ef220759c5b7f2cf (patch)
tree833b6dbb5c7dd74929183c9eff5c5e0c63b15efe
parentfccd6f6c65f6a568b40db0bf89eaa9904441d929 (diff)
README file updating - more info
Change-Id: Ie89b14869354caa0dac1d7cfe2221ec761a14bf6 Issue-ID: SDC-2057 Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
-rw-r--r--README.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/README.md b/README.md
index 549383d..f52b156 100644
--- a/README.md
+++ b/README.md
@@ -146,4 +146,22 @@ This version is intended for SDN-C team usage only.
### Changes:
1. Bug fix in Policy metadata object getter (Jtosca)
2. NPE fix in Policy getTargets method (sdc-tosca)
-3. Adding more getters to IEntityDetails interface for getEntity API introduced on 1.4.8 version.
+3. Adding more getters to IEntityDetails interface for getEntity API introduced in 1.4.8 version:
+
+ **getEntity** API retrieves details of one or more entity templates according to provided query parameters from corresponding topology template.
+
+ **entityQuery** Object describing the searched entity parameters. Includes one of following parameters: entity type,
+ SDC (node template) type, tosca type as well as optional customizationUUID and UUID
+ If the parameter is null, the returned result will contain *all* entities that types are supported by SDC.
+
+ **topologyTemplateQuery** parameters of the topology template containing the above entity.
+ Includes SDC type of the container and optional customizationUUID.
+
+ **isRecursive** indicates if the search is recursive starting from the required topology template.
+
+ Returns list of **IEntityDetails** objects containing information about the found entities.
+ If either no entities found or the provided query is incorrect, an empty list is returned.
+
+ List<IEntityDetails> getEntity(EntityQuery entityQuery, TopologyTemplateQuery topologyTemplateQuery, boolean isRecursive);
+
+