1 /*2 * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).3 * Initial Developer: H2 Group4 */5 package org.h2.store;6 7 public class LogRecord {8 LogFile log;9 int logRecordId;10 int sessionId;11 LogRecord(LogFile log, int logRecordId, int sessionId) {12 this.log = log;13 this.logRecordId = logRecordId;14 this.sessionId = sessionId;15 }16 }17