001package org.kuali.rice.krad.dao; 002 003import org.kuali.rice.krad.bo.BusinessObject; 004import org.kuali.rice.krad.bo.PersistableBusinessObject; 005import org.kuali.rice.krad.util.LegacyDataFramework; 006 007import java.util.Collection; 008import java.util.List; 009import java.util.Map; 010 011/** 012 * Created by angelind on 11/6/14. 013 * 014 * Overridden by 'Sheik Salahudeen' 015 * Overridden for fixing the document fetching issue in KRAD Transaction document with OJB. 016 * Modified method names: findBySinglePrimaryKey,findByPrimaryKey,findByPrimaryKeyUsingKeyObject,findAll,findAllActive,findAllInactive,findAllOrderBy,findAllActiveOrderBy,findMatching,findMatchingActive,findMatchingOrderBy 017 * Changes description : Modified the return type of method from '<T extends BusinessObject>' to '<T>'. 018 */ 019@Deprecated 020@LegacyDataFramework 021public interface BusinessObjectDao { 022 /** 023 * Saves any object that implements the BusinessObject interface. 024 * 025 * @param bo 026 */ 027 public PersistableBusinessObject save(PersistableBusinessObject bo); 028 029 /** 030 * Saves a List of BusinessObjects. 031 * 032 * @param businessObjects 033 */ 034 public List<? extends PersistableBusinessObject> save(List businessObjects); 035 036 /** 037 * Retrieves an object instance identified by its primary key. For composite keys, use {@link #findByPrimaryKey(Class, java.util.Map)} 038 * 039 * @param clazz 040 * @param primaryKey 041 * @return 042 */ 043 public <T> T findBySinglePrimaryKey(Class<T> clazz, Object primaryKey); 044 045 /** 046 * Retrieves an object instance identified bys it primary keys and values. This can be done by constructing a map where the key 047 * to the map entry is the primary key attribute and the value of the entry being the primary key value. For composite keys, 048 * pass in each primaryKey attribute and its value as a map entry. 049 * 050 * @param clazz 051 * @param primaryKeys 052 * @return 053 */ 054 public <T> T findByPrimaryKey(Class<T> clazz, Map<String, ?> primaryKeys); 055 056 /** 057 * Retrieves an object, based on its PK object 058 * 059 * @param clazz the class of the object to retrieve 060 * @param pkObject the value of the primary key 061 * @return the retrieved PersistableBusinessObject 062 */ 063 public abstract <T > T findByPrimaryKeyUsingKeyObject(Class<T> clazz, Object pkObject); 064 065 /** 066 * Retrieves an object instance identified by the class of the given object and the object's primary key values. 067 * 068 * @param object 069 * @return 070 */ 071 public Object retrieve(Object object); 072 073 /** 074 * Retrieves a collection of business objects populated with data, such that each record in the database populates a new object 075 * instance. This will only retrieve business objects by class type. 076 * 077 * @param clazz 078 * @return 079 */ 080 public <T> Collection<T> findAll(Class<T> clazz); 081 082 /** 083 * Retrieves a collection of business objects populated with data, such that each record in the database populates a new object 084 * instance. This will only retrieve business objects by class type. 085 * 086 * Adds criteria on active column to return only active records. Assumes there exist a mapping for PropertyConstants.Active 087 * 088 * @param clazz 089 * @return 090 */ 091 public <T> Collection<T> findAllActive(Class<T> clazz); 092 093 public <T> Collection<T> findAllInactive(Class<T> clazz); 094 095 /** 096 * Retrieves a collection of business objects populated with data, such that each record in the database populates a new object 097 * instance. This will only retrieve business objects by class type. Orders the results by the given field. 098 * 099 * @param clazz 100 * @return 101 */ 102 public <T> Collection<T> findAllOrderBy(Class<T> clazz, String sortField, boolean sortAscending); 103 104 /** 105 * Retrieves a collection of business objects populated with data, such that each record in the database populates a new object 106 * instance. This will only retrieve business objects by class type. Orders the results by the given field. 107 * 108 * Adds criteria on active column to return only active records. Assumes there exist a mapping for PropertyConstants.Active 109 * @param clazz 110 * @return 111 */ 112 public <T> Collection<T> findAllActiveOrderBy(Class<T> clazz, String sortField, boolean sortAscending); 113 114 /** 115 * This method retrieves a collection of business objects populated with data, such that each record in the database populates a 116 * new object instance. This will retrieve business objects by class type and also by criteria passed in as key-value pairs, 117 * specifically attribute name-expected value. 118 * 119 * @param clazz 120 * @param fieldValues 121 * @return 122 */ 123 public <T> Collection<T> findMatching(Class<T> clazz, Map<String, ?> fieldValues); 124 125 /** 126 * Finds all entities matching the passed in Rice JPA criteria 127 * 128 * @param <T> the type of the entity that will be returned 129 * @param criteria the criteria to form the query with 130 * @return a Collection (most likely a List) of all matching entities 131 */ 132 //public abstract <T> Collection<T> findMatching(Criteria criteria); 133 134 /** 135 * This method retrieves a collection of business objects populated with data, such that each record in the database populates a 136 * new object instance. This will retrieve business objects by class type and also by criteria passed in as key-value pairs, 137 * specifically attribute name-expected value. 138 * 139 * Adds criteria on active column to return only active records. Assumes there exist a mapping for PropertyConstants.Active 140 * 141 * @param clazz 142 * @param fieldValues 143 * @return 144 */ 145 public <T> Collection<T> findMatchingActive(Class<T> clazz, Map<String, ?> fieldValues); 146 147 /** 148 * @param clazz 149 * @param fieldValues 150 * @return count of BusinessObjects of the given class whose fields match the values in the given Map. 151 */ 152 public int countMatching(Class clazz, Map<String, ?> fieldValues); 153 154 155 /** 156 * 157 * This method returns the number of matching result given the positive criterias and 158 * negative criterias. The negative criterias are the ones that will be set to 159 * "notEqualTo" or "notIn" 160 * 161 * @param clazz 162 * @param positiveFieldValues Map of fields and values for positive criteria 163 * @param negativeFieldValues Map of fields and values for negative criteria 164 * @return 165 */ 166 public int countMatching(Class clazz, Map<String, ?> positiveFieldValues, Map<String, ?> negativeFieldValues); 167 168 /** 169 * This method retrieves a collection of business objects populated with data, such that each record in the database populates a 170 * new object instance. This will retrieve business objects by class type and also by criteria passed in as key-value pairs, 171 * specifically attribute name-expected value. Orders the results by the given field. 172 * 173 * @param clazz 174 * @param fieldValues 175 * @return 176 */ 177 public <T> Collection<T> findMatchingOrderBy(Class<T> clazz, Map<String, ?> fieldValues, String sortField, boolean sortAscending); 178 179 /** 180 * Deletes a business object from the database. 181 * 182 * @param bo 183 */ 184 public void delete(Object bo); 185 186 /** 187 * Deletes each business object in the given List from the database. 188 * 189 * @param boList 190 */ 191 public void delete(List<? extends PersistableBusinessObject> boList); 192 193 /** 194 * Deletes the business objects matching the given fieldValues 195 * 196 * @param clazz 197 * @param fieldValues 198 */ 199 public void deleteMatching(Class clazz, Map<String, ?> fieldValues); 200 201 /** 202 * Merges the given business object, but tells the ORM that the object is to be treated as Read Only, 203 * and even if it has changes, it will not be persisted to the database 204 * 205 * @param bo the business object to managed 206 * @return the managed copied of the business object 207 */ 208 public PersistableBusinessObject manageReadOnly(PersistableBusinessObject bo); 209} 210