(no commit message)
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / dto / BaseTO.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.remote.dto;
11
12 import java.util.Calendar;
13
14 /**
15 * Data Transfer Object representing derived from the domain object {@link CdmBase}.
16 *
17 * @author a.kohlbecker
18 * @author m.doering
19 * @version 1.0
20 * @created 11.12.2007 11:14:44
21 *
22 */
23 public class BaseTO {
24
25 private String uuid;
26 private Calendar created;
27 private String createdBy;
28 private Calendar updated;
29 private String updatedBy;
30
31 public String getUuid() {
32 return uuid;
33 }
34 public void setUuid(String uuid) {
35 this.uuid = uuid;
36 }
37 public Calendar getCreated() {
38 return created;
39 }
40 public void setCreated(Calendar created) {
41 this.created = created;
42 }
43 public String getCreatedBy() {
44 return createdBy;
45 }
46 public void setCreatedBy(String createdBy) {
47 this.createdBy = createdBy;
48 }
49 public Calendar getUpdated() {
50 return updated;
51 }
52 public void setUpdated(Calendar updated) {
53 this.updated = updated;
54 }
55 public String getUpdatedBy() {
56 return updatedBy;
57 }
58 public void setUpdatedBy(String updatedBy) {
59 this.updatedBy = updatedBy;
60 }
61
62
63
64
65 }