Author: kmorin Date: 2014-12-03 08:39:37 +0000 (Wed, 03 Dec 2014) New Revision: 715 Url: http://forge.codelutin.com/projects/faxtomail/repository/revisions/715 Log: fix dependency Modified: trunk/faxtomail-service/pom.xml trunk/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/service/ldap/Contact.java Modified: trunk/faxtomail-service/pom.xml =================================================================== --- trunk/faxtomail-service/pom.xml 2014-12-03 08:32:52 UTC (rev 714) +++ trunk/faxtomail-service/pom.xml 2014-12-03 08:39:37 UTC (rev 715) @@ -212,6 +212,11 @@ <artifactId>itextpdf</artifactId> </dependency> + <dependency> + <groupId>org.swinglabs.swingx</groupId> + <artifactId>swingx-common</artifactId> + </dependency> + </dependencies> <build> Modified: trunk/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/service/ldap/Contact.java =================================================================== --- trunk/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/service/ldap/Contact.java 2014-12-03 08:32:52 UTC (rev 714) +++ trunk/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/service/ldap/Contact.java 2014-12-03 08:39:37 UTC (rev 715) @@ -1,12 +1,36 @@ package com.franciaflex.faxtomail.services.service.ldap; -import org.jdesktop.beans.AbstractBean; +/* + * #%L + * FaxToMail :: Service + * $Id:$ + * $HeadURL:$ + * %% + * Copyright (C) 2014 Mac-Groupe, Code Lutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ +import org.jdesktop.beans.AbstractSerializableBean; + /** * @author Kevin Morin (Code Lutin) * @since x.x */ -public class Contact extends AbstractBean { +public class Contact extends AbstractSerializableBean { public static final String PROPERTY_NAME = "name"; public static final String PROPERTY_EMAIL = "email"; @@ -36,6 +60,6 @@ public void setEmail(String email) { Object oldValue = getEmail(); this.email = email; - firePropertyChange(PROPERTY_NAME, oldValue, email); + firePropertyChange(PROPERTY_EMAIL, oldValue, email); } }