upper case for JoinTable WorkingSet_DescriptionBase
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / description / Modifier.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.description;
11
12
13 import java.util.HashMap;
14 import java.util.Map;
15 import java.util.UUID;
16
17 import javax.persistence.Entity;
18 import javax.xml.bind.annotation.XmlAccessType;
19 import javax.xml.bind.annotation.XmlAccessorType;
20 import javax.xml.bind.annotation.XmlRootElement;
21 import javax.xml.bind.annotation.XmlType;
22
23 import org.apache.log4j.Logger;
24 import org.hibernate.envers.Audited;
25 import org.hibernate.search.annotations.Indexed;
26
27 import eu.etaxonomy.cdm.model.common.Language;
28 import eu.etaxonomy.cdm.model.common.OrderedTermBase;
29 import eu.etaxonomy.cdm.model.common.TermVocabulary;
30
31 /**
32 * This class represents possible modulations for the validity of
33 * information pieces ({@link DescriptionElementBase} description elements).
34 * It can cover probability ("perhaps"), frequency ("often") intensity ("very"),
35 * timing ("spring") and other domains. Its instances can be grouped to build
36 * different controlled {@link TermVocabulary term vocabularies}.
37 * <P>
38 * This class corresponds to GeneralModifierNLDType according to
39 * the SDD schema.
40 *
41 * @author m.doering
42 * @version 1.0
43 * @created 08-Nov-2007 13:06:35
44 */
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "Modifier")
47 @XmlRootElement(name = "Modifier")
48 @Entity
49 @Indexed(index = "eu.etaxonomy.cdm.model.common.DefinedTermBase")
50 @Audited
51 public class Modifier extends OrderedTermBase<Modifier> {
52 private static final long serialVersionUID = -2491833848163461951L;
53 @SuppressWarnings("unused")
54 private static final Logger logger = Logger.getLogger(Modifier.class);
55
56 protected static Map<UUID, Modifier> termMap = null;
57
58 /**
59 * Class constructor: creates a new empty modifier instance.
60 *
61 * @see #Modifier(String, String, String)
62 */
63 public Modifier(){
64 }
65
66
67 /**
68 * Class constructor: creates a new modifier with a description
69 * (in the {@link Language#DEFAULT() default language}), a label and a label abbreviation.
70 *
71 * @param term the string (in the default language) describing the
72 * new modifier to be created
73 * @param label the string identifying the new modifier to be created
74 * @param labelAbbrev the string identifying (in abbreviated form) the
75 * new modifier to be created
76 * @see #Modifier()
77 */
78 public Modifier(String term, String label, String labelAbbrev) {
79 super(term, label, labelAbbrev);
80 }
81
82 /**
83 * Creates a new empty modifier instance.
84 *
85 * @see #Modifier(String, String, String)
86 */
87 public static Modifier NewInstance(){
88 return new Modifier();
89 }
90
91
92
93 //************************** METHODS ********************************
94
95 /* (non-Javadoc)
96 * @see eu.etaxonomy.cdm.model.common.DefinedTermBase#resetTerms()
97 */
98 @Override
99 public void resetTerms(){
100 termMap = null;
101 }
102
103
104
105 @Override
106 protected void setDefaultTerms(TermVocabulary<Modifier> termVocabulary) {
107 termMap = new HashMap<UUID, Modifier>();
108 for (Modifier term : termVocabulary.getTerms()){
109 termMap.put(term.getUuid(), term);
110 }
111 }
112
113 }