Skip to content

Commit b3ae40f

Browse files
committed
Renaming oryginal samples
1 parent 69afae8 commit b3ae40f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ejb/timer/src/main/java/org/javaee7/ejb/timer/TimerSessionBean.java renamed to ejb/timer/src/main/java/org/javaee7/ejb/timer/AutomaticTimerBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
@Startup
1717
@Singleton
18-
public class TimerSessionBean {
18+
public class AutomaticTimerBean {
1919

2020
@Resource
2121
SessionContext ctx;

ejb/timer/src/test/java/org/javaee7/ejb/timer/TimerSessionBeanTest.java renamed to ejb/timer/src/test/java/org/javaee7/ejb/timer/AutomaticTimerBeanTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* author: Jakub Marchwicki
2323
*/
2424
@RunWith(Arquillian.class)
25-
public class TimerSessionBeanTest {
25+
public class AutomaticTimerBeanTest {
2626

2727
final static long TIMEOUT = 5000l;
2828
final static long TOLERANCE = 1000l;
@@ -38,7 +38,7 @@ public static WebArchive deploy() {
3838

3939
return ShrinkWrap.create(WebArchive.class)
4040
.addAsLibraries(jars)
41-
.addClasses(Ping.class, PingsListener.class, TimerSessionBean.class);
41+
.addClasses(Ping.class, PingsListener.class, AutomaticTimerBean.class);
4242
}
4343

4444
@Test

0 commit comments

Comments
 (0)