/**
* Copyright (c) 2000-2009, Jasig, Inc.
* See license distributed with this file and available online at
* https://www.ja-sig.org/svn/jasig-parent/tags/rel-10/license-header.txt
*/
package org.jasig.portal;
/**
* A factory for ISequenceGenerators.
* @author Dan Ellentuck
* @version $Revision: 45149 $
* @deprecated Use {@link org.jasig.portal.utils.ICounterStore} instead
*/
@Deprecated
public interface ISequenceGeneratorFactory {
/**
* @return org.jasig.portal.ISequenceGenerator
*/
ISequenceGenerator getSequenceGenerator();
}
|