1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002, 2014 Oracle and/or its affiliates.  All rights reserved.
5  *
6  */
7 
8 package com.sleepycat.je;
9 
10 import java.io.Serializable;
11 
12 /**
13  * Statistics for a single database.
14  */
15 public abstract class DatabaseStats implements Serializable {
16     private static final long serialVersionUID = 1L;
17 
18     // no public constructor
DatabaseStats()19     protected DatabaseStats() {}
20 }
21