diff options
author | Pavel Aharoni <pa0916@att.com> | 2017-06-26 17:50:37 +0300 |
---|---|---|
committer | Pavel Aharoni <pa0916@att.com> | 2017-06-26 17:50:37 +0300 |
commit | ea380b0df0a5e3632e758767244b2176808d641e (patch) | |
tree | c72b7e4743420d86537b11226d3aac97af7d86b9 /src/main/java | |
parent | 53b4ab6e88e4e7359534e6ca84e884005c7153b4 (diff) |
[SDC-39] fix javadoc
Change-Id: I4d09da9be794085d085aeef071e4f466ccf8a99f
Signed-off-by: Pavel Aharoni <pa0916@att.com>
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/org/openecomp/sdc/tosca/parser/api/ISdcCsarHelper.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/org/openecomp/sdc/tosca/parser/api/ISdcCsarHelper.java b/src/main/java/org/openecomp/sdc/tosca/parser/api/ISdcCsarHelper.java index 83bd29d..333df0d 100644 --- a/src/main/java/org/openecomp/sdc/tosca/parser/api/ISdcCsarHelper.java +++ b/src/main/java/org/openecomp/sdc/tosca/parser/api/ISdcCsarHelper.java @@ -337,13 +337,13 @@ public interface ISdcCsarHelper { public String getNodeTemplateCustomizationUuid(NodeTemplate nt); /** - * Filter Node Template properties equals/contains specific pattern + * Filter Node Template property values by equals/contains operator and a pattern * @param nodeTemplate Node Template to filter its properties - * @param filterType filter by equals/contains + * @param filterType filter type - equals or contains * @param pattern value to filter with it - * @return Map <b>full path to a property</b> mapped to <b>property value<b/> filtered by type & pattern + * @return Map <b>full path to a property</b> mapped to <b>property value</b> filtered by type and pattern */ - public Map<String, Object> filterNodeTemplatePropertiesByValue(NodeTemplate nodeTemplate, FilterType filterType, String pattern); + public Map<String, Object> filterNodeTemplatePropertiesByValue(NodeTemplate nodeTemplate, FilterType filterType, String pattern); /** * Get all node templates by sdcType for parent Node Template. |