149543c14f97ecbe11b80673dd22a351a5cf6414
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / publication / BookSeries.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.publication;
11
12
13 import org.apache.log4j.Logger;
14 import java.util.*;
15 import javax.persistence.*;
16
17 /**
18 * @author Andreas Mueller
19 * @version 1.0
20 * @created 15-Aug-2007 18:36:01
21 */
22 @Entity
23 public class BookSeries extends PublicationBase {
24 static Logger logger = Logger.getLogger(BookSeries.class);
25
26 private String series;
27
28 public String getSeries(){
29 return series;
30 }
31
32 /**
33 *
34 * @param newVal
35 */
36 public void setSeries(String newVal){
37 series = newVal;
38 }
39
40 }