source: ComponentRegistry/trunk/ComponentRegistry/src/main/java/clarin/cmdi/componentregistry/persistence/ProfileDescriptionDao.java @ 3451

Last change on this file since 3451 was 3451, checked in by George.Georgovassilis@mpi.nl, 11 years ago

#360 Fixes for shha lux16 environment and renaming of DAO interfaces and implementations

  • Property svn:mime-type set to text/plain
File size: 347 bytes
Line 
1package clarin.cmdi.componentregistry.persistence;
2
3import java.util.List;
4
5import clarin.cmdi.componentregistry.model.ProfileDescription;
6
7/**
8 *
9 * @author george.georgovassilis@mpi.nl
10 *
11 */
12public interface ProfileDescriptionDao extends AbstractDescriptionDao<ProfileDescription>{
13
14        List<ProfileDescription> getPublicProfileDescriptions();
15
16}
Note: See TracBrowser for help on using the repository browser.