Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 25 for /trunk/Java/GWT/Server/src/org/litesoft/GWT/server/ServletSessionHelper.java

Diff revisions: vs.
  @@ -72,10 +72,12 @@
72 72 return mContextID;
73 73 }
74 74
75 + @Override
75 76 public void valueBound( HttpSessionBindingEvent event )
76 77 {
77 78 }
78 79
80 + @Override
79 81 public void valueUnbound( HttpSessionBindingEvent event )
80 82 {
81 83 ServerContext.clearServerStore( mContextID );
  @@ -92,16 +94,19 @@
92 94 mSession = pSession;
93 95 }
94 96
97 + @Override
95 98 protected Serializable LLgetAttribute( String pName )
96 99 {
97 100 return (Serializable) mSession.getAttribute( pName );
98 101 }
99 102
103 + @Override
100 104 protected void LLsetAttribute( String pName, Serializable pInstance )
101 105 {
102 106 mSession.setAttribute( pName, pInstance );
103 107 }
104 108
109 + @Override
105 110 protected void LLremoveAttribute( String pName )
106 111 {
107 112 mSession.removeAttribute( pName );