01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (license2)
04: * Initial Developer: H2 Group
05: */
06: package org.h2.test.db;
07:
08: import java.io.Serializable;
09:
10: /**
11: * A utility class for TestLob.
12: */
13: class TestLobObject implements Serializable {
14: private static final long serialVersionUID = 904356179316518715L;
15: String data;
16:
17: TestLobObject(String data) {
18: this.data = data;
19: }
20: }
|