View Javadoc

1   package org.apache.maven.continuum.jdo;
2   
3   import java.util.Properties;
4   
5   import org.codehaus.plexus.jdo.DefaultConfigurableJdoFactory;
6   
7   public class MemoryJdoFactory
8       extends DefaultConfigurableJdoFactory
9   {
10      public Properties getOtherProperties()
11      {
12          return otherProperties;
13      }
14  
15      public void setOtherProperties( Properties otherProperties )
16      {
17          this.otherProperties = otherProperties;
18      }
19  
20      public void reconfigure()
21      {
22          configured = Boolean.FALSE;
23          getPersistenceManagerFactory();
24      }
25  }