PMF.java :  » Mobile » m-gov » gae » Java Open Source

Java Open Source » Mobile » m gov 
m gov » gae » PMF.java
package gae;

import javax.jdo.JDOHelper;
import javax.jdo.PersistenceManagerFactory;
 
public final class PMF { 
    private static final PersistenceManagerFactory pmfInstance = 
        JDOHelper.getPersistenceManagerFactory("transactions-optional"); 
 
    private PMF() {
    } 
 
    public static PersistenceManagerFactory get() { 
        return pmfInstance; 
    } 
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.