blob: e64bb891c4a1e90a4794b378fd612d405c804d7b [file] [log] [blame]
/*
* Copyright 2005-2008 Les Hazlewood
*
* Licensed 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 org.jsecurity.session.event;
import java.io.Serializable;
/**
* Event sent to interested parties when a session has expired. This is a special case of a
* {@link StoppedSessionEvent}, as an expired session is considered stopped.
*
* @since 0.1
* @author Les Hazlewood
*/
public class ExpiredSessionEvent extends StoppedSessionEvent {
public ExpiredSessionEvent( Serializable sessionId ) {
super( sessionId );
}
public ExpiredSessionEvent( Object source, Serializable sessionId ) {
super( source, sessionId );
}
}