private boolean saveSerialized() throws FilePersistenceException,
FilePersistenceClassNotFoundException,
FilePersistenceInvalidClassException,
FilePersistenceDataCorruptedException,
FilePersistenceNotSerializableException {
final BobSerialize bobSerialize = new BobSerialize();
// final Set<Long> set = new PLinkedHashSet<Long>();
final Set<Long> set = new PLinkedTreeSet<Long>();
for (long value = 1; value < 500; value++) {
set.add(value);
}
bobSerialize.setObject(set);
session.open();
session.setObject(BIG_BOB_KEY, bobSerialize);
Object toBigObject = null;
String exportFilePath = null;
boolean saveSucceed;