Skip to content

Instantly share code, notes, and snippets.

@Kotlin-Native
Created July 15, 2015 12:47
Show Gist options
  • Select an option

  • Save Kotlin-Native/433a430db9d3fd7cd15f to your computer and use it in GitHub Desktop.

Select an option

Save Kotlin-Native/433a430db9d3fd7cd15f to your computer and use it in GitHub Desktop.
@RequestScoped
public class MyCdiBean {
private boolean flag = true;
@Inject
private MyService service;
public void doSomething() {
if (!flag) {
service.callMethod();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment