| 1 74 package com.ivata.groupware.business.drive.file; 75 76 import java.io.IOException ; 77 import java.io.ObjectInputStream ; 78 import java.io.ObjectOutputStream ; 79 import java.io.Serializable ; 80 81 82 88 public class FileRevisionDO implements Serializable { 89 93 private String comment; 94 95 99 private String revision; 100 101 106 private String userName; 107 108 111 private java.util.Date revised; 112 113 124 private void readObject(final ObjectInputStream ois) 125 throws ClassNotFoundException , IOException { 126 ois.defaultReadObject(); 127 } 128 129 138 private void writeObject(final ObjectOutputStream oos) throws IOException { 139 oos.defaultWriteObject(); 140 } 141 142 148 public final void setComment(final String comment) { 149 this.comment = comment; 150 } 151 152 158 public final String getComment() { 159 return comment; 160 } 161 162 168 public final void setRevision(final String revision) { 169 this.revision = revision; 170 } 171 172 180 public final String getRevision() { 181 return revision; 182 } 183 184 191 public final java.util.Date getRevised() { 192 return revised; 193 } 194 195 201 public final void setRevised(final java.util.Date revised) { 202 this.revised = revised; 203 } 204 205 212 public final String getUserName() { 213 return userName; 214 } 215 216 223 public final void setUserName(final String userName) { 224 this.userName = userName; 225 } 226 } 227 | Popular Tags |