comparison software/eXist/mpdl-modules/src/de/mpg/mpiwg/berlin/mpdl/externalObjects/app/ExtObject.java @ 6:2396a569e446

new functions: externalObjects, normalizer, Unicode2Betacode
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Tue, 08 Feb 2011 14:54:09 +0100
parents
children 1ec29fdd0db8
comparison
equal deleted inserted replaced
5:94305c504178 6:2396a569e446
1 package de.mpg.mpiwg.berlin.mpdl.externalObjects.app;
2
3 import java.util.Date;
4
5 public class ExtObject {
6 protected String uid;
7 protected Date modificationDate;
8 protected String documentId;
9 protected String content;
10
11 public String getUid() {
12 return uid;
13 }
14
15 public void setUid(String uid) {
16 this.uid = uid;
17 }
18
19 public Date getModificationDate() {
20 return modificationDate;
21 }
22
23 public void setModificationDate(Date modificationDate) {
24 this.modificationDate = modificationDate;
25 }
26
27 public String getDocumentId() {
28 return documentId;
29 }
30
31 public void setDocumentId(String documentId) {
32 this.documentId = documentId;
33 }
34
35 public String getContent() {
36 return content;
37 }
38
39 public void setContent(String content) {
40 this.content = content;
41 }
42
43 }