Modified: tomcat/trunk/java/javax/servlet/http/HttpSessionBindingListener.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/http/HttpSessionBindingListener.java?rev=967146&r1=967145&r2=967146&view=diff
==============================================================================
--- tomcat/trunk/java/javax/servlet/http/HttpSessionBindingListener.java 
(original)
+++ tomcat/trunk/java/javax/servlet/http/HttpSessionBindingListener.java Fri 
Jul 23 16:03:25 2010
@@ -1,78 +1,55 @@
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements.  See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License.  You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 package javax.servlet.http;
 
 import java.util.EventListener;
 
-
- 
- 
-
 /**
- * Causes an object to be notified when it is bound to
- * or unbound from a session. The object is notified
- * by an {...@link HttpSessionBindingEvent} object. This may be as a result
- * of a servlet programmer explicitly unbinding an attribute from a session,
- * due to a session being invalidated, or due to a session timing out.
- *
- *
- * @author             Various
- * @version            $Version$
- *
+ * Causes an object to be notified when it is bound to or unbound from a
+ * session. The object is notified by an {...@link HttpSessionBindingEvent} 
object.
+ * This may be as a result of a servlet programmer explicitly unbinding an
+ * attribute from a session, due to a session being invalidated, or due to a
+ * session timing out.
+ * 
+ * @author Various
+ * @version $Version$
  * @see HttpSession
  * @see HttpSessionBindingEvent
- *
  */
-
 public interface HttpSessionBindingListener extends EventListener {
 
-
-
     /**
-     *
-     * Notifies the object that it is being bound to
-     * a session and identifies the session.
-     *
-     * @param event            the event that identifies the
-     *                         session 
-     *
+     * Notifies the object that it is being bound to a session and identifies
+     * the session.
+     * 
+     * @param event
+     *            the event that identifies the session
      * @see #valueUnbound
-     *
-     */ 
-
+     */
     public void valueBound(HttpSessionBindingEvent event);
-    
-    
 
     /**
-     *
-     * Notifies the object that it is being unbound
-     * from a session and identifies the session.
-     *
-     * @param event            the event that identifies
-     *                         the session 
-     * 
+     * Notifies the object that it is being unbound from a session and
+     * identifies the session.
+     * 
+     * @param event
+     *            the event that identifies the session
      * @see #valueBound
-     *
      */
-
     public void valueUnbound(HttpSessionBindingEvent event);
-    
-    
 }
-

Modified: tomcat/trunk/java/javax/servlet/http/HttpSessionContext.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/http/HttpSessionContext.java?rev=967146&r1=967145&r2=967146&view=diff
==============================================================================
--- tomcat/trunk/java/javax/servlet/http/HttpSessionContext.java (original)
+++ tomcat/trunk/java/javax/servlet/http/HttpSessionContext.java Fri Jul 23 
16:03:25 2010
@@ -1,70 +1,53 @@
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements.  See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License.  You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 package javax.servlet.http;
 
 import java.util.Enumeration;
 
 /**
- *
- * @author             Various
- * @version            $Version$
- *
- * @deprecated         As of Java(tm) Servlet API 2.1
- *                     for security reasons, with no replacement.
- *                     This interface will be removed in a future
- *                     version of this API.
- *
- * @see                        HttpSession
- * @see                        HttpSessionBindingEvent
- * @see                        HttpSessionBindingListener
- *
+ * @author Various
+ * @version $Version$
+ * @deprecated As of Java(tm) Servlet API 2.1 for security reasons, with no
+ *             replacement. This interface will be removed in a future version
+ *             of this API.
+ * @see HttpSession
+ * @see HttpSessionBindingEvent
+ * @see HttpSessionBindingListener
  */
-...@suppresswarnings("dep-ann") // Spec API does not use @Deprecated
+...@suppresswarnings("dep-ann")
+// Spec API does not use @Deprecated
 public interface HttpSessionContext {
 
     /**
-     *
-     * @deprecated     As of Java Servlet API 2.1 with
-     *                 no replacement. This method must 
-     *                 return null and will be removed in
-     *                 a future version of this API.
-     *
+     * @deprecated As of Java Servlet API 2.1 with no replacement. This method
+     *             must return null and will be removed in a future version of
+     *             this API.
      */
-    @SuppressWarnings("dep-ann") // Spec API does not use @Deprecated
+    @SuppressWarnings("dep-ann")
+    // Spec API does not use @Deprecated
     public HttpSession getSession(String sessionId);
-    
-    
-    
-  
+
     /**
-     *
-     * @deprecated     As of Java Servlet API 2.1 with
-     *                 no replacement. This method must return 
-     *                 an empty <code>Enumeration</code> and will be removed
-     *                 in a future version of this API.
-     *
+     * @deprecated As of Java Servlet API 2.1 with no replacement. This method
+     *             must return an empty <code>Enumeration</code> and will be
+     *             removed in a future version of this API.
      */
-    @SuppressWarnings("dep-ann") // Spec API does not use @Deprecated
+    @SuppressWarnings("dep-ann")
+    // Spec API does not use @Deprecated
     public Enumeration<String> getIds();
 }
-
-
-
-
-

Modified: tomcat/trunk/java/javax/servlet/http/HttpSessionEvent.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/http/HttpSessionEvent.java?rev=967146&r1=967145&r2=967146&view=diff
==============================================================================
--- tomcat/trunk/java/javax/servlet/http/HttpSessionEvent.java (original)
+++ tomcat/trunk/java/javax/servlet/http/HttpSessionEvent.java Fri Jul 23 
16:03:25 2010
@@ -1,34 +1,35 @@
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements.  See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License.  You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package javax.servlet.http;
 
-
-       /** This is the class representing event notifications for
-       * changes to sessions within a web application.
-        * @since       v 2.3
-       */
+/**
+ * This is the class representing event notifications for changes to sessions
+ * within a web application.
+ * 
+ * @since v 2.3
+ */
 public class HttpSessionEvent extends java.util.EventObject {
-       /** Construct a session event from the given source.*/
-        public HttpSessionEvent(HttpSession source) {
-               super(source);
-}
-       /** Return the session that changed.*/
-    public HttpSession getSession () { 
-       return (HttpSession) super.getSource();
+    /** Construct a session event from the given source. */
+    public HttpSessionEvent(HttpSession source) {
+        super(source);
     }
-}
 
+    /** Return the session that changed. */
+    public HttpSession getSession() {
+        return (HttpSession) super.getSource();
+    }
+}

Modified: tomcat/trunk/java/javax/servlet/http/HttpSessionListener.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/http/HttpSessionListener.java?rev=967146&r1=967145&r2=967146&view=diff
==============================================================================
--- tomcat/trunk/java/javax/servlet/http/HttpSessionListener.java (original)
+++ tomcat/trunk/java/javax/servlet/http/HttpSessionListener.java Fri Jul 23 
16:03:25 2010
@@ -1,45 +1,48 @@
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements.  See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License.  You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package javax.servlet.http;
 
 import java.util.EventListener;
 
-       /** 
-       * Implementations of this interface are notified of changes to the 
-       * list of active sessions in a web application.
-       * To receive notification events, the implementation class
-       * must be configured in the deployment descriptor for the web 
application.
-       * @see HttpSessionEvent
-        * @since       v 2.3
-       */
-
+/**
+ * Implementations of this interface are notified of changes to the list of
+ * active sessions in a web application. To receive notification events, the
+ * implementation class must be configured in the deployment descriptor for the
+ * web application.
+ * 
+ * @see HttpSessionEvent
+ * @since v 2.3
+ */
 public interface HttpSessionListener extends EventListener {
-    
-       /** 
-       * Notification that a session was created.
-       * @param se the notification event
-       */
-    public void sessionCreated ( HttpSessionEvent se );
-    
-       /** 
-       * Notification that a session is about to be invalidated.
-       * @param se the notification event
-       */
-    public void sessionDestroyed ( HttpSessionEvent se );
-    
-}
 
+    /**
+     * Notification that a session was created.
+     * 
+     * @param se
+     *            the notification event
+     */
+    public void sessionCreated(HttpSessionEvent se);
+
+    /**
+     * Notification that a session is about to be invalidated.
+     * 
+     * @param se
+     *            the notification event
+     */
+    public void sessionDestroyed(HttpSessionEvent se);
+
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to