Hafid Haddouti

Hafid Haddouti commited on 2014-04-25 23:53:39
Zeige 1 geänderte Dateien mit 6 Einfügungen und 1 Löschungen.

... ...
@@ -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
 }
13 18