blob: b136ab4994d05bc22aeef86adbf7f51754326b6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.c2kernel.persistency;
/**
* Provided for easier loading (may be referenced without package in ClusterStorage property)
* @author abranson
*
*/
public class XMLDBClusterStorage extends com.c2kernel.persistency.xmldb.XMLDBClusterStorage {
public XMLDBClusterStorage() throws Exception {
super();
}
}
|