minor
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / agent / Contact.java
index b4544da291b87b4bc568330bb966b8e2365fd2c9..7e521a53c71364cc3adec65328b426bfefae8cd3 100644 (file)
@@ -1,19 +1,22 @@
 /**
 * Copyright (C) 2007 EDIT
-* European Distributed Institute of Taxonomy 
+* European Distributed Institute of Taxonomy
 * http://www.e-taxonomy.eu
-* 
+*
 * The contents of this file are subject to the Mozilla Public License Version 1.1
 * See LICENSE.TXT at the top of this package for the full license terms.
 */
 
 package eu.etaxonomy.cdm.model.agent;
 
+import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.HashSet;
 import java.util.List;
 import java.util.Set;
 
+import javax.persistence.Column;
+import javax.persistence.ElementCollection;
 import javax.persistence.Embeddable;
 import javax.persistence.FetchType;
 import javax.persistence.OneToMany;
@@ -25,12 +28,16 @@ import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.XmlSchemaType;
 import javax.xml.bind.annotation.XmlType;
 
+import org.apache.commons.lang.StringUtils;
 import org.apache.log4j.Logger;
 import org.hibernate.annotations.Cascade;
 import org.hibernate.annotations.CascadeType;
-import org.hibernate.annotations.CollectionOfElements;
 import org.hibernate.envers.Audited;
 
+import eu.etaxonomy.cdm.model.location.Point;
+import eu.etaxonomy.cdm.model.location.Country;
+import eu.etaxonomy.cdm.strategy.merge.MergeException;
+
 /**
  * The class for information on how to approach a {@link Person person} or an {@link Institution institution}.
  * It includes telecommunication data and an electronic as well as
@@ -40,7 +47,7 @@ import org.hibernate.envers.Audited;
  * <li> ContactDetails according to the TDWG ontology
  * <li> Contact (partially) according to the ABCD schema
  * </ul>
- * 
+ *
  * @author m.doering
  * @version 1.0
  * @created 08-Nov-2007 13:06:18
@@ -56,60 +63,156 @@ import org.hibernate.envers.Audited;
 @XmlRootElement(name = "Contact")
 @Embeddable
 @Audited
-public class Contact {
+public class Contact implements Serializable, Cloneable {
        private static final long serialVersionUID = -1851305307069277625L;
        private static final Logger logger = Logger.getLogger(Contact.class);
-       
 
-       /** 
+
+       public static Contact NewInstance() {
+               return new Contact();
+       }
+
+       /**
+        * Creates a new contact
+        * @param street
+        * @param postcode
+        * @param locality
+        * @param country
+        * @param pobox
+        * @param region
+        * @param email
+        * @param faxNumber
+        * @param phoneNumber
+        * @param url
+        * @param location
+        * @return
+        */
+       public static Contact NewInstance(String street, String postcode, String locality,
+                       Country country, String pobox, String region,
+                       String email, String faxNumber, String phoneNumber, String url, Point location) {
+               Contact result = new Contact();
+               if (country != null || StringUtils.isNotBlank(locality) || StringUtils.isNotBlank(pobox) || StringUtils.isNotBlank(postcode) ||
+                               StringUtils.isNotBlank(region) || StringUtils.isNotBlank(street) ){
+                       Address newAddress = Address.NewInstance(country, locality, pobox, postcode, region, street, location);
+                       result.addAddress(newAddress);
+               }
+               if (email != null){
+                       result.addEmailAddress(email);
+               }
+               if (faxNumber != null){
+                       result.addFaxNumber(faxNumber);
+               }
+               if (phoneNumber != null){
+                       result.addPhoneNumber(phoneNumber);
+               }
+               if (url != null){
+                       result.addUrl(url);
+               }
+               return result;
+       }
+
+
+       public static Contact NewInstance(Set<Address> addresses, List<String> emailAdresses,
+                       List<String> faxNumbers, List<String> phoneNumbers, List<String> urls) {
+               Contact result = new Contact();
+               if (addresses != null){
+                       result.addresses = addresses;
+               }
+               if (emailAdresses != null){
+                       result.emailAddresses = emailAdresses;
+               }
+               if (faxNumbers != null){
+                       result.faxNumbers = faxNumbers;
+               }
+               if (phoneNumbers != null){
+                       result.phoneNumbers = phoneNumbers;
+               }
+               if (urls != null){
+                       result.urls = urls;
+               }
+               return result;
+       }
+
+
+       /**
         * Class constructor.
         */
        public Contact() {
-               super();
-               logger.debug("Constructor call");
        }
 
-       @XmlElementWrapper(name = "EmailAddresses")
+       @XmlElementWrapper(name = "EmailAddresses", nillable = true)
        @XmlElement(name = "EmailAddress")
-       @CollectionOfElements(fetch = FetchType.LAZY)
-       private List<String> emailAddresses = new ArrayList<String>();
-       
-       @XmlElementWrapper(name = "URLs")
+       @ElementCollection(fetch = FetchType.LAZY)
+       @Column(name = "contact_emailaddresses_element")
+       private List<String> emailAddresses;
+
+       @XmlElementWrapper(name = "URLs", nillable = true)
        @XmlElement(name = "URL")
     @XmlSchemaType(name = "anyURI")
-    @CollectionOfElements(fetch = FetchType.LAZY)
-       private List<String> urls = new ArrayList<String>();
-       
-       @XmlElementWrapper(name = "PhoneNumbers")
+       @ElementCollection(fetch = FetchType.LAZY)
+    @Column(name = "contact_urls_element")
+       private List<String> urls;
+
+       @XmlElementWrapper(name = "PhoneNumbers", nillable = true)
        @XmlElement(name = "PhoneNumber")
-       @CollectionOfElements(fetch = FetchType.LAZY)
-       private List<String> phoneNumbers = new ArrayList<String>();
-       
-       @XmlElementWrapper(name = "FaxNumbers")
+       @ElementCollection(fetch = FetchType.LAZY)
+    @Column(name = "contact_phonenumbers_element")
+       private List<String> phoneNumbers;
+
+       @XmlElementWrapper(name = "FaxNumbers", nillable = true)
        @XmlElement(name = "FaxNumber")
-       @CollectionOfElements(fetch = FetchType.LAZY)
-       private List<String> faxNumbers = new ArrayList<String>();
-       
-    @XmlElementWrapper(name = "Addresses")
+       @ElementCollection(fetch = FetchType.LAZY)
+    @Column(name = "contact_faxnumbers_element")
+       private List<String> faxNumbers;
+
+    @XmlElementWrapper(name = "Addresses", nillable = true)
     @XmlElement(name = "Address")
-    @OneToMany(fetch = FetchType.LAZY)
-       @Cascade({CascadeType.SAVE_UPDATE, CascadeType.DELETE_ORPHAN})
-       protected Set<Address> addresses = new HashSet<Address>();
-       
-       
-       /** 
-        * Returns the set of postal {@link Address addresses} belonging to <i>this</i> contact. 
+    @OneToMany(fetch = FetchType.LAZY, orphanRemoval=true)
+       @Cascade({CascadeType.SAVE_UPDATE, CascadeType.MERGE})
+       protected Set<Address> addresses;
+
+
+       public void merge(Contact contact2) throws MergeException{
+               if (contact2 != null){
+                       mergeList(this.getEmailAddresses(), contact2.getEmailAddresses());
+                       mergeList(this.getFaxNumbers(), contact2.getFaxNumbers());
+                       mergeList(this.getPhoneNumbers(), contact2.getPhoneNumbers());
+                       mergeList(this.getUrls(), contact2.getUrls());
+                       for (Address address : contact2.getAddresses()){
+                               try {
+                                       this.addresses.add((Address)address.clone());
+                               } catch (CloneNotSupportedException e) {
+                                       throw new MergeException("Address must implement Cloneable");
+                               }
+                       }
+               }
+       }
+
+       private void mergeList(List list1, List list2){
+               for (Object obj2 : list2){
+                       if (! list1.contains(obj2)){
+                               list1.add(obj2);
+                       }
+               }
+       }
+
+
+       /**
+        * Returns the set of postal {@link Address addresses} belonging to <i>this</i> contact.
         * A {@link Person person} or an {@link Institution institution} cannot have more than one contact,
-        * but a contact may include several postal addresses. 
+        * but a contact may include several postal addresses.
         *
         * @return      the set of postal addresses
         * @see     Address
         */
        public Set<Address> getAddresses(){
+               if(this.addresses == null) {
+                       this.addresses = new HashSet<Address>();
+               }
                return this.addresses;
        }
-       
-       /** 
+
+       /**
         * Adds a new postal {@link Address address} to the set of postal addresses of <i>this</i> contact.
         *
         * @param  address  the address to be added
@@ -118,26 +221,35 @@ public class Contact {
         */
        public void addAddress(Address address){
                if (address != null){
-                       addresses.add(address);
+                       getAddresses().add(address);
                }
        }
-       
-       /** 
+
+       public void addAddress(String street, String postcode, String locality,
+                       Country country, String pobox, String region, Point location){
+               Address newAddress = Address.NewInstance(country, locality, pobox, postcode, region, street, location);
+               getAddresses().add(newAddress);
+       }
+
+       /**
         * Removes one element from the set of postal addresses of <i>this</i> contact.
         *
         * @param  address  the postal address of <i>this</i> contact which should be deleted
         * @see                 #getAddresses()
         */
        public void removeAddress(Address address){
-               addresses.remove(address);
+               getAddresses().remove(address);
        }
 
-       
+
        /**
         * Returns the List of strings representing the electronic mail addresses
         * included in <i>this</i> contact.
         */
        public List<String> getEmailAddresses(){
+               if(this.emailAddresses == null) {
+                       this.emailAddresses = new ArrayList<String>();
+               }
                return this.emailAddresses;
        }
 
@@ -145,17 +257,17 @@ public class Contact {
         * @see  #getEmailAddress()
         */
        public void addEmailAddress(String emailAddress){
-               this.emailAddresses.add(emailAddress);
+               getEmailAddresses().add(emailAddress);
        }
-       
-       /** 
+
+       /**
         * Removes one element from the list of email addresses of <i>this</i> contact.
         *
         * @param  emailAddress  the email address of <i>this</i> contact which should be deleted
         * @see                 #getEmailAddresses()
         */
        public void removeEmailAddress(String emailAddress){
-               emailAddresses.remove(emailAddress);
+               getEmailAddresses().remove(emailAddress);
        }
 
        /**
@@ -163,6 +275,9 @@ public class Contact {
         * included in <i>this</i> contact.
         */
        public List<String> getUrls(){
+               if(this.urls == null) {
+                       this.urls = new ArrayList<String>();
+               }
                return this.urls;
        }
 
@@ -170,17 +285,17 @@ public class Contact {
         * @see  #getUrls()
         */
        public void addUrl(String url){
-               this.urls.add(url);
+               getUrls().add(url);
        }
-       
-       /** 
+
+       /**
         * Removes one element from the list of urls of <i>this</i> contact.
         *
         * @param  url  the url of <i>this</i> contact which should be deleted
         * @see                 #getUrls()
         */
        public void removeUrl(String url){
-               urls.remove(url);
+               getUrls().remove(url);
        }
 
        /**
@@ -188,6 +303,9 @@ public class Contact {
         * included in <i>this</i> contact.
         */
        public List<String> getPhoneNumbers(){
+               if(this.phoneNumbers == null) {
+                       this.phoneNumbers = new ArrayList<String>();
+               }
                return this.phoneNumbers;
        }
 
@@ -195,17 +313,17 @@ public class Contact {
         * @see  #getPhone()
         */
        public void addPhoneNumber(String phoneNumber){
-               this.phoneNumbers.add(phoneNumber);
+               getPhoneNumbers().add(phoneNumber);
        }
-       
-       /** 
+
+       /**
         * Removes one element from the list of phone numbers of <i>this</i> contact.
         *
         * @param  phoneNumber  the phone number of <i>this</i> contact which should be deleted
         * @see                 #getPhoneNumber()
         */
        public void removePhoneNumber(String phoneNumber){
-               phoneNumbers.remove(phoneNumber);
+               getPhoneNumbers().remove(phoneNumber);
        }
 
        /**
@@ -213,6 +331,9 @@ public class Contact {
         * included in <i>this</i> contact.
         */
        public List<String> getFaxNumbers(){
+               if(this.faxNumbers == null) {
+                       this.faxNumbers = new ArrayList<String>();
+               }
                return this.faxNumbers;
        }
 
@@ -220,16 +341,42 @@ public class Contact {
         * @see  #getFaxNumbers()
         */
        public void addFaxNumber(String faxNumber){
-               this.faxNumbers.add(faxNumber);
+               getFaxNumbers().add(faxNumber);
        }
 
-       /** 
+       /**
         * Removes one element from the list of telefax numbers of <i>this</i> contact.
         *
         * @param  faxNumber  the telefax number of <i>this</i> contact which should be deleted
         * @see                 #getFaxNumber()
         */
        public void removeFaxNumber(String faxNumber){
-               faxNumbers.remove(faxNumber);
+               getFaxNumbers().remove(faxNumber);
+       }
+
+//*********************** CLONE ********************************************************/
+
+       /**
+        * Clones <i>this</i> Contact. This is a shortcut that enables to create
+        * a new instance that differs only slightly from <i>this</i> Contact.
+        *
+        *
+        * @see java.lang.Object#clone()
+        */
+       @Override
+       public Object clone() {
+               try{
+                       Contact result = (Contact) super.clone();
+                       result.addresses = new HashSet<Address>();
+                       for (Address adr : this.addresses){
+                               result.addAddress((Address)adr.clone());
+                       }
+                       //no changes to emailAdresses, faxNumbers, phoneNumbers, urls
+                       return result;
+               }catch (CloneNotSupportedException e){
+                       logger.warn("Object does not implement cloneable");
+                       e.printStackTrace();
+                       return null;
+               }
        }
 }
\ No newline at end of file