use of org.platformlayer.ops.filesystem.FilesystemInfo in project platformlayer by platformlayer.
the class HdbDatabaseEntry method alreadyExists.
@Override
protected boolean alreadyExists() throws OpsException {
OpsTarget target = OpsContext.get().getInstance(OpsTarget.class);
FilesystemInfo dirInfo = target.getFilesystemInfoFile(new File(getDataDirectory(), "objectClass.bdb"));
return dirInfo != null;
}
Aggregations