Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 72C1918739 for ; Wed, 15 Jul 2015 05:46:46 +0000 (UTC) Received: (qmail 43101 invoked by uid 500); 15 Jul 2015 05:46:46 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 43067 invoked by uid 500); 15 Jul 2015 05:46:46 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 43055 invoked by uid 99); 15 Jul 2015 05:46:46 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jul 2015 05:46:46 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id EF95C18195A for ; Wed, 15 Jul 2015 05:46:45 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id 45CxMh2346My for ; Wed, 15 Jul 2015 05:46:37 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 7E5964C0D7 for ; Wed, 15 Jul 2015 05:46:37 +0000 (UTC) Received: (qmail 42135 invoked by uid 99); 15 Jul 2015 05:45:22 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jul 2015 05:45:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D022EE33CA; Wed, 15 Jul 2015 05:45:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Date: Wed, 15 Jul 2015 05:45:23 -0000 Message-Id: <7ee13c4407dc45bd9affe70345b145dd@git.apache.org> In-Reply-To: <6296e96edb9746d9a3b4814d93229571@git.apache.org> References: <6296e96edb9746d9a3b4814d93229571@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/6] incubator-ignite git commit: # master - javadoc fix. # master - javadoc fix. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/d2a1c3c3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/d2a1c3c3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/d2a1c3c3 Branch: refs/heads/ignite-890 Commit: d2a1c3c3a1d8cb775ef3967c4d290d927f2a311c Parents: bc036fe Author: Dmitiry Setrakyan Authored: Tue Jul 14 16:31:36 2015 -0700 Committer: Dmitiry Setrakyan Committed: Tue Jul 14 16:31:36 2015 -0700 ---------------------------------------------------------------------- .../apache/ignite/cache/CacheTypeMetadata.java | 30 ++++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d2a1c3c3/modules/core/src/main/java/org/apache/ignite/cache/CacheTypeMetadata.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/cache/CacheTypeMetadata.java b/modules/core/src/main/java/org/apache/ignite/cache/CacheTypeMetadata.java index 1090b0b..ebe7db7 100644 --- a/modules/core/src/main/java/org/apache/ignite/cache/CacheTypeMetadata.java +++ b/modules/core/src/main/java/org/apache/ignite/cache/CacheTypeMetadata.java @@ -51,15 +51,15 @@ public class CacheTypeMetadata implements Serializable { @GridToStringInclude private Collection valFields; - /** Fields to be queried, in addition to indexed fields. */ + /** Field name-to-type map to be queried, in addition to indexed fields. */ @GridToStringInclude private Map> qryFlds; - /** Fields to index in ascending order. */ + /** Field name-to-type map to index in ascending order. */ @GridToStringInclude private Map> ascFlds; - /** Fields to index in descending order. */ + /** Field name-to-type map to index in descending order. */ @GridToStringInclude private Map> descFlds; @@ -244,54 +244,54 @@ public class CacheTypeMetadata implements Serializable { } /** - * Gets query-enabled fields. + * Gets name-to-type map for query-enabled fields. * - * @return Collection of fields available for query. + * @return Name-to-type map for query-enabled fields. */ public Map> getQueryFields() { return qryFlds; } /** - * Sets query fields map. + * Sets name-to-type map for query-enabled fields. * - * @param qryFlds Query fields. + * @param qryFlds Name-to-type map for query-enabled fields. */ public void setQueryFields(Map> qryFlds) { this.qryFlds = qryFlds; } /** - * Gets ascending-indexed fields. + * Gets name-to-type map for ascending-indexed fields. * - * @return Map of ascending-indexed fields. + * @return Name-to-type map for ascending-indexed fields. */ public Map> getAscendingFields() { return ascFlds; } /** - * Sets ascending-indexed fields. + * Sets name-to-type map for ascending-indexed fields. * - * @param ascFlds Map of ascending-indexed fields. + * @param ascFlds Name-to-type map for ascending-indexed fields. */ public void setAscendingFields(Map> ascFlds) { this.ascFlds = ascFlds; } /** - * Gets descending-indexed fields. + * Gets name-to-type map for descending-indexed fields. * - * @return Map of descending-indexed fields. + * @return Name-to-type map of descending-indexed fields. */ public Map> getDescendingFields() { return descFlds; } /** - * Sets descending-indexed fields. + * Sets name-to-type map for descending-indexed fields. * - * @param descFlds Map of descending-indexed fields. + * @param descFlds Name-to-type map of descending-indexed fields. */ public void setDescendingFields(Map> descFlds) { this.descFlds = descFlds;