updated to trunk
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / persistence / dao / common / IIdentifiableDao.java
index 50c6b021312e6bb000654cff2850fec9b2d22096..03bc808c1a03aa64a7753d886ab5ce6440f9d652 100644 (file)
@@ -18,7 +18,7 @@ import eu.etaxonomy.cdm.model.common.IdentifiableSource;
 import eu.etaxonomy.cdm.model.common.LSID;
 import eu.etaxonomy.cdm.model.common.UuidAndTitleCache;
 import eu.etaxonomy.cdm.model.media.Rights;
-import eu.etaxonomy.cdm.persistence.dao.BeanInitializer;
+import eu.etaxonomy.cdm.persistence.dao.initializer.IBeanInitializer;
 import eu.etaxonomy.cdm.persistence.query.MatchMode;
 import eu.etaxonomy.cdm.persistence.query.OrderHint;
 
@@ -53,7 +53,7 @@ public interface IIdentifiableDao <T extends IdentifiableEntity> extends IAnnota
         * @param identifiableEntity The identifiable entity
         * @param pageSize The maximum number of sources returned (can be null for all sources)
         * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
-        * @param propertyPaths properties to initialize - see {@link BeanInitializer#initialize(Object, List)}
+        * @param propertyPaths properties to initialize - see {@link IBeanInitializer#initialize(Object, List)}
         * @return a List of OriginalSource instances
         */
        public List<IdentifiableSource> getSources(T identifiableEntity, Integer pageSize, Integer pageNumber, List<String> propertyPaths);
@@ -72,7 +72,7 @@ public interface IIdentifiableDao <T extends IdentifiableEntity> extends IAnnota
         * @param identifiableEntity The identifiable entity
         * @param pageSize The maximum number of rights returned (can be null for all rights)
         * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
-        * @param propertyPaths properties to initialize - see {@link BeanInitializer#initialize(Object, List)}
+        * @param propertyPaths properties to initialize - see {@link IBeanInitializer#initialize(Object, List)}
         * @return a List of Rights instances
         */
        public List<Rights> getRights(T identifiableEntity, Integer pageSize, Integer pageNumber, List<String> propertyPaths);
@@ -99,7 +99,7 @@ public interface IIdentifiableDao <T extends IdentifiableEntity> extends IAnnota
         * @param criteria extra restrictions to apply
         * @param pageSize The maximum number of rights returned (can be null for all rights)
         * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
-        * @param propertyPaths properties to initialize - see {@link BeanInitializer#initialize(Object, List)}
+        * @param propertyPaths properties to initialize - see {@link IBeanInitializer#initialize(Object, List)}
         * @param orderHints
         *            Supports path like <code>orderHints.propertyNames</code> which
         *            include *-to-one properties like createdBy.username or
@@ -131,7 +131,7 @@ public interface IIdentifiableDao <T extends IdentifiableEntity> extends IAnnota
         * @param criteria extra restrictions to apply
         * @param pageSize The maximum number of rights returned (can be null for all rights)
         * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
-        * @param propertyPaths properties to initialize - see {@link BeanInitializer#initialize(Object, List)}
+        * @param propertyPaths properties to initialize - see {@link IBeanInitializer#initialize(Object, List)}
         * @param orderHints
         *            Supports path like <code>orderHints.propertyNames</code> which
         *            include *-to-one properties like createdBy.username or