Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2862)

Unified Diff: chrome_release_test_status/src/dashboard/PMF.java

Issue 2831022: The following java and jsp files will collect the Chrome release testing stat... Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome_release_test_status/src/dashboard/PMF.java
===================================================================
--- chrome_release_test_status/src/dashboard/PMF.java (revision 0)
+++ chrome_release_test_status/src/dashboard/PMF.java (revision 0)
@@ -0,0 +1,15 @@
+package mydemo;
+
+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;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698