1 package test.guice;
2 
3 
4 public class MyContextImpl implements MyContext {
5   private final MySession mySession = new MySession();
6 
7   @Override
getSession()8   public MySession getSession() {
9     return mySession;
10   }
11 }
12