From dev-return-15432-archive-asf-public=cust-asf.ponee.io@syncope.apache.org Thu Apr 12 16:00:56 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id D6773180634 for ; Thu, 12 Apr 2018 16:00:55 +0200 (CEST) Received: (qmail 86673 invoked by uid 500); 12 Apr 2018 14:00:55 -0000 Mailing-List: contact dev-help@syncope.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@syncope.apache.org Delivered-To: mailing list dev@syncope.apache.org Received: (qmail 86657 invoked by uid 99); 12 Apr 2018 14:00:54 -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; Thu, 12 Apr 2018 14:00:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CFE49E09E2; Thu, 12 Apr 2018 14:00:53 +0000 (UTC) From: ilgrosso To: dev@syncope.apache.org Reply-To: dev@syncope.apache.org References: In-Reply-To: Subject: [GitHub] syncope pull request #70: [SYNCOPE-1301] fixed Content-Type: text/plain Message-Id: <20180412140053.CFE49E09E2@git1-us-west.apache.org> Date: Thu, 12 Apr 2018 14:00:53 +0000 (UTC) Github user ilgrosso commented on a diff in the pull request: https://github.com/apache/syncope/pull/70#discussion_r181091780 --- Diff: core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AccessTokenDAO.java --- @@ -34,6 +34,8 @@ AccessToken save(AccessToken accessToken); + void merge(AccessToken accessToken); --- End diff -- maybe `replace()` makes more sense ---