Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A22BA200B9E for ; Sat, 8 Oct 2016 12:35:16 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A093F160ADF; Sat, 8 Oct 2016 10:35:16 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E59A0160AD1 for ; Sat, 8 Oct 2016 12:35:15 +0200 (CEST) Received: (qmail 82953 invoked by uid 500); 8 Oct 2016 10:35:15 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 82944 invoked by uid 99); 8 Oct 2016 10:35:14 -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; Sat, 08 Oct 2016 10:35:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A9DECE0209; Sat, 8 Oct 2016 10:35:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cpike@apache.org To: commits@directory.apache.org Message-Id: <6c7f71a4ef8d400594f9f01cca5d7825@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: directory-fortress-core git commit: FC-190 - Update Group to remove multiple setters with same name Date: Sat, 8 Oct 2016 10:35:14 +0000 (UTC) archived-at: Sat, 08 Oct 2016 10:35:16 -0000 Repository: directory-fortress-core Updated Branches: refs/heads/master 5f3ae1141 -> 1a4b939c3 FC-190 - Update Group to remove multiple setters with same name Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/1a4b939c Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/1a4b939c Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/1a4b939c Branch: refs/heads/master Commit: 1a4b939c3a86443b2d5bec8f2ee349747736dfc8 Parents: 5f3ae11 Author: clp207 Authored: Sat Oct 8 06:34:59 2016 -0400 Committer: clp207 Committed: Sat Oct 8 06:34:59 2016 -0400 ---------------------------------------------------------------------- .../java/org/apache/directory/fortress/core/model/Group.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/1a4b939c/src/main/java/org/apache/directory/fortress/core/model/Group.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/directory/fortress/core/model/Group.java b/src/main/java/org/apache/directory/fortress/core/model/Group.java index 73aa6bd..547d700 100755 --- a/src/main/java/org/apache/directory/fortress/core/model/Group.java +++ b/src/main/java/org/apache/directory/fortress/core/model/Group.java @@ -263,7 +263,7 @@ public class Group extends FortEntity implements Serializable * * @param members String contains one or more userids in comma delimited format. */ - public void setMembers( String members ) + public void setMembersWithCsv( String members ) { if ( members != null ) { @@ -362,7 +362,7 @@ public class Group extends FortEntity implements Serializable * * @param properties contains name=value pairs that are comma delmited. */ - public void setProperties( String properties ) + public void setPropertiesWithCsv( String properties ) { setProperties( PropUtil.getProperties( properties, '=', "," ) ); }