import java.text.MessageFormat;
import java.util.List;
+import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.inject.Named;
import javax.naming.InitialContext;
private ShopDataBeanRemote getRemote () {
return this.remote;
}
+
+ @Override
+ @PostConstruct
+ public void init () throws RuntimeException {
+ // Call super method
+ super.genericInit();
+ }
}