1268c81638646bf3dd91d2c9d52ce81fccc1932b
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / agent / Team.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.agent;
11
12
13 import eu.etaxonomy.cdm.model.common.VersionableEntity;
14 import org.apache.log4j.Logger;
15 import java.util.*;
16 import javax.persistence.*;
17
18 /**
19 * This author team class note explains everything there is to authors and
20 * includes explanation why certain attributes have been dropped or are dealt with
21 * elsewhere.
22 * @author Andreas Mueller
23 * @version 1.0
24 * @created 15-Aug-2007 18:36:16
25 */
26 @Entity
27 public class Team extends VersionableEntity {
28 static Logger logger = Logger.getLogger(Team.class);
29
30 private String fullName;
31 private String shortName;
32 private java.util.ArrayList teamMembers;
33
34 public String getFullName(){
35 return fullName;
36 }
37
38 public String getShortName(){
39 return shortName;
40 }
41
42 public java.util.ArrayList getTeamMembers(){
43 return teamMembers;
44 }
45
46 /**
47 *
48 * @param newVal
49 */
50 public void setFullName(String newVal){
51 fullName = newVal;
52 }
53
54 /**
55 *
56 * @param newVal
57 */
58 public void setShortName(String newVal){
59 shortName = newVal;
60 }
61
62 /**
63 *
64 * @param newVal
65 */
66 public void setTeamMembers(java.util.ArrayList newVal){
67 teamMembers = newVal;
68 }
69
70 }