1 /** 2 * 3 */ 4 package fr.paris.lutece.plugins.document.business.workflow; 5 6 import fr.paris.lutece.util.ReferenceList; 7 8 import java.util.Locale; 9 10 11 /** 12 * This class provides Data Access methods for DocumentStateDAO interface 13 */ 14 public interface IDocumentStateDAO 15 { 16 /** 17 * Load the data of Rule from the table 18 * 19 * @return the instance of the Rule 20 * @param nDocumentStateId 21 */ 22 DocumentState load( int nDocumentStateId ); 23 24 /** 25 * Load the list of Document States 26 * @return The Reference of the Document States 27 * @param locale 28 */ 29 ReferenceList selectDocumentStatesList( Locale locale ); 30 }