Project

General

Profile

Download (4.57 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.cdm.model.common;
11

    
12

    
13
import javax.persistence.FetchType;
14
import javax.persistence.ManyToOne;
15
import javax.persistence.MappedSuperclass;
16
import javax.xml.bind.annotation.XmlAccessType;
17
import javax.xml.bind.annotation.XmlAccessorType;
18
import javax.xml.bind.annotation.XmlElement;
19
import javax.xml.bind.annotation.XmlIDREF;
20
import javax.xml.bind.annotation.XmlRootElement;
21
import javax.xml.bind.annotation.XmlSchemaType;
22
import javax.xml.bind.annotation.XmlType;
23

    
24
import org.apache.commons.lang.StringUtils;
25
import org.apache.log4j.Logger;
26
import org.hibernate.annotations.Cascade;
27
import org.hibernate.annotations.CascadeType;
28
import org.hibernate.envers.Audited;
29

    
30
import eu.etaxonomy.cdm.model.reference.Reference;
31

    
32
/**
33
 * Abstract class for all objects that may have a reference
34
 * @author m.doering
35
 * @since 08-Nov-2007 13:06:47
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "ReferencedEntityBase", propOrder = {
39
    "citationMicroReference",
40
    "originalNameString",
41
    "citation"
42
})
43
@XmlRootElement(name = "ReferencedEntityBase")
44
@MappedSuperclass
45
@Audited
46
public abstract class ReferencedEntityBase extends AnnotatableEntity implements IReferencedEntity {
47
	private static final long serialVersionUID = -5614669050360359126L;
48
	@SuppressWarnings("unused")
49
	private static final Logger logger = Logger.getLogger(ReferencedEntityBase.class);
50

    
51
	//Details of the reference. These are mostly (implicitly) pages but can also be tables or any other element of a
52
	//publication. {if the citationMicroReference exists then there must be also a reference}
53
    @XmlElement(name = "Citation")
54
    @XmlIDREF
55
    @XmlSchemaType(name = "IDREF")
56
    @ManyToOne(fetch = FetchType.LAZY)
57
    @Cascade({CascadeType.SAVE_UPDATE,CascadeType.MERGE})
58
	private Reference citation;
59

    
60
    @XmlElement(name = "CitationMicroReference")
61
	private String citationMicroReference;
62

    
63
    @XmlElement(name = "OriginalNameString")
64
	private String originalNameString;
65

    
66
// ************ CONSTRUCTOR ********************************************/
67

    
68
	//for hibernate use only
69
    protected ReferencedEntityBase() {
70
		super();
71
	}
72

    
73

    
74

    
75
	public ReferencedEntityBase(Reference citation, String citationMicroReference,
76
			String originalNameString) {
77
		super();
78
		this.citationMicroReference = citationMicroReference;
79
		this.originalNameString = originalNameString;
80
		this.citation = citation;
81
	}
82

    
83
//********************* GETTER / SETTER *******************************/
84

    
85
	public String getCitationMicroReference(){
86
		return this.citationMicroReference;
87
	}
88
	public void setCitationMicroReference(String citationMicroReference){
89
		this.citationMicroReference = citationMicroReference;
90
	}
91

    
92

    
93
	public String getOriginalNameString(){
94
		return this.originalNameString;
95
	}
96
	public void setOriginalNameString(String originalNameString){
97
		this.originalNameString = originalNameString;
98
	}
99

    
100
	@Override
101
    public Reference getCitation(){
102
		return this.citation;
103
	}
104
	public void setCitation(Reference citation) {
105
		this.citation = citation;
106
	}
107

    
108
//****************** CLONE ************************************************/
109

    
110
	/* (non-Javadoc)
111
	 * @see java.lang.Object#clone()
112
	 */
113
	@Override
114
	public Object clone() throws CloneNotSupportedException{
115
		ReferencedEntityBase result = (ReferencedEntityBase)super.clone();
116

    
117
		//no changes to: citation, citationMicroReference, originalNameString
118
		return result;
119
	}
120

    
121
//*********************************** EQUALS *********************************************************/
122

    
123
	/**
124
	 * Indicates whether some other object is "equal to" this one.
125
	 *
126
	 * Uses a content based compare strategy which avoids bean initialization. This is achieved by
127
	 * comparing the cdm entity ids.
128
	 *
129
	 * @param other
130
	 * @return
131
	 */
132
	public boolean equalsByShallowCompare(ReferencedEntityBase other) {
133

    
134
	    int thisCitationId = -1;
135
	    int otherCitationId = -1;
136
	    if(this.getCitation() != null) {
137
	        thisCitationId = this.getCitation().getId();
138
	    }
139
	    if(other.getCitation() != null) {
140
	        otherCitationId = other.getCitation().getId();
141
        }
142

    
143
        if(thisCitationId != otherCitationId
144
                || !StringUtils.equals(this.getCitationMicroReference(), other.getCitationMicroReference())
145
                || !StringUtils.equals(this.getOriginalNameString(), other.getOriginalNameString())
146
                        ){
147
            return false;
148
        }
149

    
150
        return true;
151
    }
152

    
153

    
154
}
(62-62/79)