1 package fr.paris.lutece.plugin.documentimport.business;
2
3 import java.util.List;
4
5 public interface IDocumentAttributDAO {
6
7 /**
8 *
9 * @param documentTypeAttrName
10 * @param codeDocumentType
11 * @return
12 */
13 int findIdDocumentAttributs(String documentTypeAttrName, String codeDocumentType);
14
15
16 /**
17 * return attributs value
18 * @param idDocumentAttribut
19 * @return
20 */
21 List<String> findValueAttributs(int idDocumentAttribut);
22
23 }