Package org.apache.isis.objectstore.nosql

Examples of org.apache.isis.objectstore.nosql.NoSqlObjectStore


                    LOG.warn("No encryption specified");
                    final DataEncryption encryption = new DataEncryptionNone();
                    availableDataEncryption.put(encryption.getType(), encryption);
                    writeWithEncryption = encryption;
                }
                objectStore = new NoSqlObjectStore(db, oidGenerator, versionCreator, writeWithEncryption, availableDataEncryption);
            } catch (final IllegalArgumentException e) {
                throw new IsisException(e);
            } catch (final SecurityException e) {
                throw new IsisException(e);
            }
View Full Code Here

TOP

Related Classes of org.apache.isis.objectstore.nosql.NoSqlObjectStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.