Project

General

Profile

« Previous | Next » 

Revision 8674da7a

Added by Andreas Müller almost 8 years ago

Clean up Credit

View differences:

cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/common/Credit.java
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
import javax.persistence.Entity;
13
import javax.persistence.FetchType;
14
import javax.persistence.ManyToOne;
15
import javax.xml.bind.annotation.XmlAccessType;
16
import javax.xml.bind.annotation.XmlAccessorType;
17
import javax.xml.bind.annotation.XmlElement;
18
import javax.xml.bind.annotation.XmlIDREF;
19
import javax.xml.bind.annotation.XmlSchemaType;
20
import javax.xml.bind.annotation.XmlType;
21

  
22
import org.apache.log4j.Logger;
23
import org.hibernate.annotations.Cascade;
24
import org.hibernate.annotations.CascadeType;
25
import org.hibernate.envers.Audited;
26

  
27
import eu.etaxonomy.cdm.model.agent.AgentBase;
28

  
29
/**
30
 * @author a.mueller
31
 * @created 23.03.2009
32
 * @version 1.0
33
 */
34
@XmlAccessorType(XmlAccessType.FIELD)
35
@XmlType(name = "Credit")
36
@Entity
37
@Audited
38
public class Credit extends LanguageStringBase implements Cloneable{
39
	private static final long serialVersionUID = 5763391127298427701L;
40
	@SuppressWarnings("unused")
41
	private static final Logger logger = Logger.getLogger(Credit.class);
42
	
43
	// owner etc as defined by the rightstype
44
	@XmlElement(name = "Agent")
45
	@XmlIDREF
46
	@XmlSchemaType(name = "IDREF")
47
	@ManyToOne(fetch = FetchType.LAZY)
48
	@Cascade({CascadeType.SAVE_UPDATE,CascadeType.MERGE})
49
	private AgentBase<?> agent;
50
	
51
	@XmlElement(name = "AbbreviatedText")
52
	private String abbreviatedText;
53
	
54
	public static Credit NewInstance(AgentBase agent, String text){
55
		return NewInstance(agent, text, null, Language.DEFAULT());
56
	}
57

  
58
	public static Credit NewInstance(AgentBase agent, String text, String abbreviatedText, Language language){
59
		Credit result = new Credit(text, language);
60
		result.setAgent(agent);
61
		result.setAbbreviatedText(abbreviatedText);
62
		return result;
63
	}
64

  
65
	
66
	protected Credit(){
67
		super();
68
	}
69
	
70
	protected Credit(String text, Language language){
71
		super(text, language);
72
	}
73

  
74

  
75

  
76
	/**
77
	 * @return the agent
78
	 */
79
	public AgentBase getAgent() {
80
		return agent;
81
	}
82

  
83

  
84

  
85
	/**
86
	 * @param agent the agent to set
87
	 */
88
	public void setAgent(AgentBase agent) {
89
		this.agent = agent;
90
	}
91

  
92

  
93

  
94
	/**
95
	 * @return the abbreviatedText
96
	 */
97
	public String getAbbreviatedText() {
98
		return abbreviatedText;
99
	}
100

  
101

  
102

  
103
	/**
104
	 * @param abbreviatedText the abbreviatedText to set
105
	 */
106
	public void setAbbreviatedText(String abbreviatedText) {
107
		this.abbreviatedText = abbreviatedText;
108
	}
109

  
110
//************************* CLONE **************************/
111
	
112
	/* (non-Javadoc)
113
	 * @see java.lang.Object#clone()
114
	 */
115
	@Override
116
	public Object clone() throws CloneNotSupportedException{
117
		Credit result = (Credit)super.clone();
118
		//no changes to: agent
119
		return result;
120
	}
121

  
122
	
123
}
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
import javax.persistence.Entity;
13
import javax.persistence.FetchType;
14
import javax.persistence.ManyToOne;
15
import javax.xml.bind.annotation.XmlAccessType;
16
import javax.xml.bind.annotation.XmlAccessorType;
17
import javax.xml.bind.annotation.XmlElement;
18
import javax.xml.bind.annotation.XmlIDREF;
19
import javax.xml.bind.annotation.XmlSchemaType;
20
import javax.xml.bind.annotation.XmlType;
21

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

  
28
import eu.etaxonomy.cdm.model.agent.AgentBase;
29

  
30
/**
31
 * @author a.mueller
32
 * @created 23.03.2009
33
 * @version 1.0
34
 */
35
@XmlAccessorType(XmlAccessType.FIELD)
36
@XmlType(name = "Credit")
37
@Entity
38
@Audited
39
public class Credit extends LanguageStringBase implements Cloneable{
40
	private static final long serialVersionUID = 5763391127298427701L;
41
	@SuppressWarnings("unused")
42
	private static final Logger logger = Logger.getLogger(Credit.class);
43

  
44
// ********************** FACTORY **********************************************/
45

  
46
    public static Credit NewInstance(AgentBase agent, String text){
47
        return NewInstance(agent, text, null, Language.DEFAULT());
48
    }
49

  
50
    public static Credit NewInstance(AgentBase agent, String text, String abbreviatedText, Language language){
51
        Credit result = new Credit(text, language);
52
        result.setAgent(agent);
53
        result.setAbbreviatedText(abbreviatedText);
54
        return result;
55
    }
56

  
57
// ********************** FACTORY **********************************************/
58

  
59
	// owner etc as defined by the rightstype
60
	@XmlElement(name = "Agent")
61
	@XmlIDREF
62
	@XmlSchemaType(name = "IDREF")
63
	@ManyToOne(fetch = FetchType.LAZY)
64
	@Cascade({CascadeType.SAVE_UPDATE,CascadeType.MERGE})
65
	private AgentBase<?> agent;
66

  
67
	@XmlElement(name = "AbbreviatedText")
68
	private String abbreviatedText;
69

  
70
// ********************** CONSTRUCTOR **********************************************/
71

  
72
	protected Credit(){
73
		super();
74
	}
75

  
76
	protected Credit(String text, Language language){
77
		super(text, language);
78
	}
79

  
80
//*********************** GETTER /SETTER *****************************/
81

  
82
	/**
83
	 * @return the agent
84
	 */
85
	public AgentBase getAgent() {
86
		return agent;
87
	}
88
	public void setAgent(AgentBase agent) {
89
		this.agent = agent;
90
	}
91

  
92

  
93
	/**
94
	 * @return the abbreviatedText
95
	 */
96
	public String getAbbreviatedText() {
97
		return abbreviatedText;
98
	}
99
	public void setAbbreviatedText(String abbreviatedText) {
100
		this.abbreviatedText = abbreviatedText;
101
	}
102

  
103
//************************* CLONE **************************/
104

  
105
	@Override
106
	public Object clone() throws CloneNotSupportedException{
107
		Credit result = (Credit)super.clone();
108
		//no changes to: agent
109
		return result;
110
	}
111

  
112
    @Override
113
    public String toString() {
114
        if (StringUtils.isNotBlank(this.abbreviatedText)){
115
            return this.abbreviatedText;
116
        }else if (StringUtils.isNotBlank(this.text)){
117
            return this.text;
118
        }else{
119
            return super.toString();
120
        }
121
    }
122

  
123
}

Also available in: Unified diff