package foundation.persist;
|
|
import foundation.server.Container;
|
|
public class NamedSQLContainer extends Container<NamedSQL> {
|
|
private static NamedSQLContainer instance;
|
|
|
private NamedSQLContainer() {
|
}
|
|
|
public synchronized static NamedSQLContainer getInstance() {
|
if (instance == null) {
|
instance = new NamedSQLContainer();
|
}
|
|
return instance;
|
}
|
|
|
}
|