1 package org.splat.dal.bo.som;
4 * @author Daniel Brunier-Coulin
5 * @copyright OPEN CASCADE 2012
8 import org.splat.dal.bo.kernel.Persistent;
9 import org.splat.dal.bo.kernel.Relation;
12 public class StampRelation extends Relation {
14 private Timestamp refer;
16 // ==============================================================================================================================
18 // ==============================================================================================================================
20 // Database fetch constructor
21 protected StampRelation () {
23 // Internal constructor
24 protected StampRelation (Document from, Timestamp to) {
25 // -----------------------------------------------------
30 // ==============================================================================================================================
31 // Public member functions
32 // ==============================================================================================================================
34 public Timestamp getTo () {
35 // -------------------------
39 public ValidationStep getStampType () {
40 // -------------------------------------
41 return refer.getType();
44 protected void setTo (Persistent to) {
45 // ------------------------------------
46 refer = (Timestamp)to;