Hafid Haddouti authored on 25/04/2014 23:53:39
Showing 1 changed files
... ...
@@ -1,12 +1,17 @@
1 1
 package com.haddouti.pg.jee6;
2 2
 
3
+import javax.annotation.PostConstruct;
3 4
 import javax.ejb.Stateless;
4 5
 
5 6
 /**
6
- * This is servce
7
+ * This is service
7 8
  */
8 9
 @Stateless
9 10
 public class OneService {
10 11
 
12
+	@PostConstruct
13
+	public void init() {
14
+		
15
+	}
11 16
 	
12 17
 }