* @param userName Username for the datastore
* @param password Password for the datastore
*/
public ForceJDOPersistenceManager(JDOPersistenceManagerFactory apmf, String userName, String password) {
super(apmf, userName, password);
this.objectMgr = new ForceObjectManagerImpl(apmf, this, userName, password);
fetchPlan = new JDOFetchPlan(objectMgr.getFetchPlan());
setTransaction(objectMgr.getTransaction());
}