Return-Path: X-Original-To: apmail-incubator-syncope-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-syncope-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 04EFBD7F6 for ; Mon, 12 Nov 2012 14:43:30 +0000 (UTC) Received: (qmail 82558 invoked by uid 500); 12 Nov 2012 14:43:29 -0000 Delivered-To: apmail-incubator-syncope-commits-archive@incubator.apache.org Received: (qmail 82488 invoked by uid 500); 12 Nov 2012 14:43:28 -0000 Mailing-List: contact syncope-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: syncope-dev@incubator.apache.org Delivered-To: mailing list syncope-commits@incubator.apache.org Received: (qmail 82459 invoked by uid 99); 12 Nov 2012 14:43:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Nov 2012 14:43:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Nov 2012 14:43:25 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 51E632388A29; Mon, 12 Nov 2012 14:43:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1408311 - /incubator/syncope/branches/cxf/core/src/main/java/org/apache/syncope/core/persistence/beans/Notification.java Date: Mon, 12 Nov 2012 14:43:04 -0000 To: syncope-commits@incubator.apache.org From: jbernhardt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121112144304.51E632388A29@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jbernhardt Date: Mon Nov 12 14:43:03 2012 New Revision: 1408311 URL: http://svn.apache.org/viewvc?rev=1408311&view=rev Log: Fixed Notification JPA class, causing building errors Modified: incubator/syncope/branches/cxf/core/src/main/java/org/apache/syncope/core/persistence/beans/Notification.java Modified: incubator/syncope/branches/cxf/core/src/main/java/org/apache/syncope/core/persistence/beans/Notification.java URL: http://svn.apache.org/viewvc/incubator/syncope/branches/cxf/core/src/main/java/org/apache/syncope/core/persistence/beans/Notification.java?rev=1408311&r1=1408310&r2=1408311&view=diff ============================================================================== --- incubator/syncope/branches/cxf/core/src/main/java/org/apache/syncope/core/persistence/beans/Notification.java (original) +++ incubator/syncope/branches/cxf/core/src/main/java/org/apache/syncope/core/persistence/beans/Notification.java Mon Nov 12 14:43:03 2012 @@ -54,7 +54,7 @@ public class Notification extends Abstra @ElementCollection(fetch = FetchType.EAGER) @Column(name = "events") - private final List events; + private List events; @NotNull @Lob