2007年10月16日火曜日

HttpSessionAttributeListener

HttpSessionAttributeListener は
セッション属性の変化を通知します。
メソッドは3つあります。

<サンプル>
public class MySessionListener implements
        HttpSessionAttributeListener {
    public void attributeAdded(HttpSessionBindingEvent sbe) {
        ServletContext sc=
            sbe.getSession().getServletContext();
        ......
    }
public void attributeRemoved(HttpSessionBindingEvent sbe) {
        ServletContext sc=
            sbe.getSession().getServletContext();
        .....
    }
    public void attributeReplaced(HttpSessionBindingEvent sbe) {
        ServletContext sc=
            sbe.getSession().getServletContext();
        .....
    }
}

0 件のコメント: