I am trying to access Oracle NoSql DB using JPA (api - org.eclipse.persistence.jpa.PersistenceProvider).
I am facing two issues :
- How to secure my Oracle NoSql store using just basic authentication (login/password only) ?
Oracle docs at: https://docs.oracle.com/cd/NOSQL/html/SecurityGuide/secure_installation.html seems to be helpful but I don't need so much security overheads.
- How to access this secured data-store using JPA, two properties I came across are: "eclipselink.nosql.property.user", "eclipselink.nosql.property.password". Are they valid for Oracle NoSql DB ?
Any help appreciated.