You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ri...@apache.org on 2010/09/22 21:11:38 UTC

svn commit: r1000147 - /geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/ejb/TimerConfig.java

Author: rickmcguire
Date: Wed Sep 22 19:11:37 2010
New Revision: 1000147

URL: http://svn.apache.org/viewvc?rev=1000147&view=rev
Log:
GERONIMO-5625 Incorrect default value for the javax.ejb.TimerConfig persistent attribute. 


Modified:
    geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/ejb/TimerConfig.java

Modified: geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/ejb/TimerConfig.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/ejb/TimerConfig.java?rev=1000147&r1=1000146&r2=1000147&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/ejb/TimerConfig.java (original)
+++ geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/ejb/TimerConfig.java Wed Sep 22 19:11:37 2010
@@ -28,6 +28,7 @@ public class TimerConfig {
 	private boolean persistent;
 
     public TimerConfig() {
+		persistent = true; 
     }
 
     public TimerConfig(Serializable info, boolean persistent) {