1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package de.bea.domingo.map;
24
25 /***
26 * Optional abstract base class for digest classes. Implementations of digest
27 * classes that inherit from this base class have access to internal properties
28 * of the view column from which they where created. <p>If digest classes that
29 * don't inherit from this base class need access to such properties (e.g. the
30 * UniversalId of the document), they can also do this in the concrete mapper,
31 * but it is recommended to use this base class.</p>
32 *
33 * @author <a href="mailto:kriede@users.sourceforge.net">Kurt Riede</a>
34 */
35 public abstract class BaseDigest {
36
37 /*** The universalId of the notes document. */
38 private String universalId;
39
40 /***
41 * @return Returns the unid.
42 */
43 public final String getUnid() {
44 return universalId;
45 }
46
47 /***
48 * @param unid The unid to set.
49 */
50 public final void setUnid(final String unid) {
51 this.universalId = unid;
52 }
53 }