Repository: incubator-unomi Updated Branches: refs/heads/master e25c3f903 -> 759aab52c
UNOMI-117 update javadoc Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/759aab52 Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/759aab52 Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/759aab52 Branch: refs/heads/master Commit: 759aab52cac2108e7d378584cd40ae097cd64b8c Parents: e25c3f9 Author: dgaillard <[email protected]> Authored: Mon Oct 9 17:12:50 2017 +0200 Committer: dgaillard <[email protected]> Committed: Mon Oct 9 17:12:50 2017 +0200 ---------------------------------------------------------------------- .../apache/unomi/api/services/DefinitionsService.java | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/759aab52/api/src/main/java/org/apache/unomi/api/services/DefinitionsService.java ---------------------------------------------------------------------- diff --git a/api/src/main/java/org/apache/unomi/api/services/DefinitionsService.java b/api/src/main/java/org/apache/unomi/api/services/DefinitionsService.java index f24813d..6618741 100644 --- a/api/src/main/java/org/apache/unomi/api/services/DefinitionsService.java +++ b/api/src/main/java/org/apache/unomi/api/services/DefinitionsService.java @@ -180,22 +180,19 @@ public interface DefinitionsService { * * @param rootCondition * @param tag - * @return + * @return Condition */ @Deprecated Condition extractConditionByTag(Condition rootCondition, String tag); /** - * Retrieves a condition matching the specified tag identifier from the specified root condition. - * - * TODO: remove from API and move to a different class? - * TODO: purpose and behavior not clear + * Retrieves a condition matching the specified system tag identifier from the specified root condition. * * @param rootCondition - * @param tag - * @return + * @param systemTag + * @return Condition */ - Condition extractConditionBySystemTag(Condition rootCondition, String tag); + Condition extractConditionBySystemTag(Condition rootCondition, String systemTag); /** * Resolves (if possible) the {@link ConditionType}s for the specified condition and its sub-conditions (if any) from the type identifiers existing on the specified condition
