/* ======================================================================
   Parts Copyright 2006 University of Leeds, Oxford University, University of the Highlands and Islands.

   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.bodington.server;

/**
 * Class that encapsulates a multi-resource session. This class is intended to
 * act as a superclass for session implementations that represent a single user
 * associated with multiple resources. Subclasses of this class can be
 * associated with multiple resources within its life-cycle. However, it is
 * still only ever associated with a single resource at any instance in time.
 * Session implementations that should only ever be bound to a single resource
 * within their life-cycle, should subclass {@link SingleResourceSession}
 * instead.
 * @see SingleResourceSession
 * @author Jon Maber
 */
public abstract class ReusableResourceSession 
	{
	public ReusableResourceSession(){}
	}
