1 23 24 package org.objectweb.cjdbc.controller.virtualdatabase.protocol; 25 26 import java.io.Serializable ; 27 28 import org.objectweb.cjdbc.controller.recoverylog.events.LogEntry; 29 30 39 public class CopyLogEntry implements Serializable  40 { 41 private static final long serialVersionUID = 1L; 42 43 private LogEntry entry; 44 45 50 public CopyLogEntry(LogEntry entry) 51 { 52 this.entry = entry; 53 } 54 55 60 public LogEntry getEntry() 61 { 62 return entry; 63 } 64 } 65 | Popular Tags |