001 /** 002 * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved. 003 * 004 * This library is free software; you can redistribute it and/or modify it under 005 * the terms of the GNU Lesser General Public License as published by the Free 006 * Software Foundation; either version 2.1 of the License, or (at your option) 007 * any later version. 008 * 009 * This library is distributed in the hope that it will be useful, but WITHOUT 010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 012 * details. 013 */ 014 015 package com.liferay.portlet.social.service.persistence; 016 017 import com.liferay.portal.service.persistence.BasePersistence; 018 019 import com.liferay.portlet.social.model.SocialEquityLog; 020 021 /** 022 * The persistence interface for the social equity log service. 023 * 024 * <p> 025 * Never modify or reference this interface directly. Always use {@link SocialEquityLogUtil} to access the social equity log persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface. 026 * </p> 027 * 028 * <p> 029 * Caching information and settings can be found in <code>portal.properties</code> 030 * </p> 031 * 032 * @author Brian Wing Shun Chan 033 * @see SocialEquityLogPersistenceImpl 034 * @see SocialEquityLogUtil 035 * @generated 036 */ 037 public interface SocialEquityLogPersistence extends BasePersistence<SocialEquityLog> { 038 /** 039 * Caches the social equity log in the entity cache if it is enabled. 040 * 041 * @param socialEquityLog the social equity log to cache 042 */ 043 public void cacheResult( 044 com.liferay.portlet.social.model.SocialEquityLog socialEquityLog); 045 046 /** 047 * Caches the social equity logs in the entity cache if it is enabled. 048 * 049 * @param socialEquityLogs the social equity logs to cache 050 */ 051 public void cacheResult( 052 java.util.List<com.liferay.portlet.social.model.SocialEquityLog> socialEquityLogs); 053 054 /** 055 * Creates a new social equity log with the primary key. Does not add the social equity log to the database. 056 * 057 * @param equityLogId the primary key for the new social equity log 058 * @return the new social equity log 059 */ 060 public com.liferay.portlet.social.model.SocialEquityLog create( 061 long equityLogId); 062 063 /** 064 * Removes the social equity log with the primary key from the database. Also notifies the appropriate model listeners. 065 * 066 * @param equityLogId the primary key of the social equity log to remove 067 * @return the social equity log that was removed 068 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 069 * @throws SystemException if a system exception occurred 070 */ 071 public com.liferay.portlet.social.model.SocialEquityLog remove( 072 long equityLogId) 073 throws com.liferay.portal.kernel.exception.SystemException, 074 com.liferay.portlet.social.NoSuchEquityLogException; 075 076 public com.liferay.portlet.social.model.SocialEquityLog updateImpl( 077 com.liferay.portlet.social.model.SocialEquityLog socialEquityLog, 078 boolean merge) 079 throws com.liferay.portal.kernel.exception.SystemException; 080 081 /** 082 * Finds the social equity log with the primary key or throws a {@link com.liferay.portlet.social.NoSuchEquityLogException} if it could not be found. 083 * 084 * @param equityLogId the primary key of the social equity log to find 085 * @return the social equity log 086 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 087 * @throws SystemException if a system exception occurred 088 */ 089 public com.liferay.portlet.social.model.SocialEquityLog findByPrimaryKey( 090 long equityLogId) 091 throws com.liferay.portal.kernel.exception.SystemException, 092 com.liferay.portlet.social.NoSuchEquityLogException; 093 094 /** 095 * Finds the social equity log with the primary key or returns <code>null</code> if it could not be found. 096 * 097 * @param equityLogId the primary key of the social equity log to find 098 * @return the social equity log, or <code>null</code> if a social equity log with the primary key could not be found 099 * @throws SystemException if a system exception occurred 100 */ 101 public com.liferay.portlet.social.model.SocialEquityLog fetchByPrimaryKey( 102 long equityLogId) 103 throws com.liferay.portal.kernel.exception.SystemException; 104 105 /** 106 * Finds all the social equity logs where assetEntryId = ? and type = ? and active = ?. 107 * 108 * @param assetEntryId the asset entry id to search with 109 * @param type the type to search with 110 * @param active the active to search with 111 * @return the matching social equity logs 112 * @throws SystemException if a system exception occurred 113 */ 114 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_T_A( 115 long assetEntryId, int type, boolean active) 116 throws com.liferay.portal.kernel.exception.SystemException; 117 118 /** 119 * Finds a range of all the social equity logs where assetEntryId = ? and type = ? and active = ?. 120 * 121 * <p> 122 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 123 * </p> 124 * 125 * @param assetEntryId the asset entry id to search with 126 * @param type the type to search with 127 * @param active the active to search with 128 * @param start the lower bound of the range of social equity logs to return 129 * @param end the upper bound of the range of social equity logs to return (not inclusive) 130 * @return the range of matching social equity logs 131 * @throws SystemException if a system exception occurred 132 */ 133 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_T_A( 134 long assetEntryId, int type, boolean active, int start, int end) 135 throws com.liferay.portal.kernel.exception.SystemException; 136 137 /** 138 * Finds an ordered range of all the social equity logs where assetEntryId = ? and type = ? and active = ?. 139 * 140 * <p> 141 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 142 * </p> 143 * 144 * @param assetEntryId the asset entry id to search with 145 * @param type the type to search with 146 * @param active the active to search with 147 * @param start the lower bound of the range of social equity logs to return 148 * @param end the upper bound of the range of social equity logs to return (not inclusive) 149 * @param orderByComparator the comparator to order the results by 150 * @return the ordered range of matching social equity logs 151 * @throws SystemException if a system exception occurred 152 */ 153 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_T_A( 154 long assetEntryId, int type, boolean active, int start, int end, 155 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 156 throws com.liferay.portal.kernel.exception.SystemException; 157 158 /** 159 * Finds the first social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?. 160 * 161 * <p> 162 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 163 * </p> 164 * 165 * @param assetEntryId the asset entry id to search with 166 * @param type the type to search with 167 * @param active the active to search with 168 * @param orderByComparator the comparator to order the set by 169 * @return the first matching social equity log 170 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 171 * @throws SystemException if a system exception occurred 172 */ 173 public com.liferay.portlet.social.model.SocialEquityLog findByAEI_T_A_First( 174 long assetEntryId, int type, boolean active, 175 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 176 throws com.liferay.portal.kernel.exception.SystemException, 177 com.liferay.portlet.social.NoSuchEquityLogException; 178 179 /** 180 * Finds the last social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?. 181 * 182 * <p> 183 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 184 * </p> 185 * 186 * @param assetEntryId the asset entry id to search with 187 * @param type the type to search with 188 * @param active the active to search with 189 * @param orderByComparator the comparator to order the set by 190 * @return the last matching social equity log 191 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 192 * @throws SystemException if a system exception occurred 193 */ 194 public com.liferay.portlet.social.model.SocialEquityLog findByAEI_T_A_Last( 195 long assetEntryId, int type, boolean active, 196 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 197 throws com.liferay.portal.kernel.exception.SystemException, 198 com.liferay.portlet.social.NoSuchEquityLogException; 199 200 /** 201 * Finds the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?. 202 * 203 * <p> 204 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 205 * </p> 206 * 207 * @param equityLogId the primary key of the current social equity log 208 * @param assetEntryId the asset entry id to search with 209 * @param type the type to search with 210 * @param active the active to search with 211 * @param orderByComparator the comparator to order the set by 212 * @return the previous, current, and next social equity log 213 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 214 * @throws SystemException if a system exception occurred 215 */ 216 public com.liferay.portlet.social.model.SocialEquityLog[] findByAEI_T_A_PrevAndNext( 217 long equityLogId, long assetEntryId, int type, boolean active, 218 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 219 throws com.liferay.portal.kernel.exception.SystemException, 220 com.liferay.portlet.social.NoSuchEquityLogException; 221 222 /** 223 * Finds all the social equity logs where userId = ? and actionId = ? and active = ? and type = ?. 224 * 225 * @param userId the user id to search with 226 * @param actionId the action id to search with 227 * @param active the active to search with 228 * @param type the type to search with 229 * @return the matching social equity logs 230 * @throws SystemException if a system exception occurred 231 */ 232 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByU_AID_A_T( 233 long userId, java.lang.String actionId, boolean active, int type) 234 throws com.liferay.portal.kernel.exception.SystemException; 235 236 /** 237 * Finds a range of all the social equity logs where userId = ? and actionId = ? and active = ? and type = ?. 238 * 239 * <p> 240 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 241 * </p> 242 * 243 * @param userId the user id to search with 244 * @param actionId the action id to search with 245 * @param active the active to search with 246 * @param type the type to search with 247 * @param start the lower bound of the range of social equity logs to return 248 * @param end the upper bound of the range of social equity logs to return (not inclusive) 249 * @return the range of matching social equity logs 250 * @throws SystemException if a system exception occurred 251 */ 252 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByU_AID_A_T( 253 long userId, java.lang.String actionId, boolean active, int type, 254 int start, int end) 255 throws com.liferay.portal.kernel.exception.SystemException; 256 257 /** 258 * Finds an ordered range of all the social equity logs where userId = ? and actionId = ? and active = ? and type = ?. 259 * 260 * <p> 261 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 262 * </p> 263 * 264 * @param userId the user id to search with 265 * @param actionId the action id to search with 266 * @param active the active to search with 267 * @param type the type to search with 268 * @param start the lower bound of the range of social equity logs to return 269 * @param end the upper bound of the range of social equity logs to return (not inclusive) 270 * @param orderByComparator the comparator to order the results by 271 * @return the ordered range of matching social equity logs 272 * @throws SystemException if a system exception occurred 273 */ 274 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByU_AID_A_T( 275 long userId, java.lang.String actionId, boolean active, int type, 276 int start, int end, 277 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 278 throws com.liferay.portal.kernel.exception.SystemException; 279 280 /** 281 * Finds the first social equity log in the ordered set where userId = ? and actionId = ? and active = ? and type = ?. 282 * 283 * <p> 284 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 285 * </p> 286 * 287 * @param userId the user id to search with 288 * @param actionId the action id to search with 289 * @param active the active to search with 290 * @param type the type to search with 291 * @param orderByComparator the comparator to order the set by 292 * @return the first matching social equity log 293 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 294 * @throws SystemException if a system exception occurred 295 */ 296 public com.liferay.portlet.social.model.SocialEquityLog findByU_AID_A_T_First( 297 long userId, java.lang.String actionId, boolean active, int type, 298 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 299 throws com.liferay.portal.kernel.exception.SystemException, 300 com.liferay.portlet.social.NoSuchEquityLogException; 301 302 /** 303 * Finds the last social equity log in the ordered set where userId = ? and actionId = ? and active = ? and type = ?. 304 * 305 * <p> 306 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 307 * </p> 308 * 309 * @param userId the user id to search with 310 * @param actionId the action id to search with 311 * @param active the active to search with 312 * @param type the type to search with 313 * @param orderByComparator the comparator to order the set by 314 * @return the last matching social equity log 315 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 316 * @throws SystemException if a system exception occurred 317 */ 318 public com.liferay.portlet.social.model.SocialEquityLog findByU_AID_A_T_Last( 319 long userId, java.lang.String actionId, boolean active, int type, 320 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 321 throws com.liferay.portal.kernel.exception.SystemException, 322 com.liferay.portlet.social.NoSuchEquityLogException; 323 324 /** 325 * Finds the social equity logs before and after the current social equity log in the ordered set where userId = ? and actionId = ? and active = ? and type = ?. 326 * 327 * <p> 328 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 329 * </p> 330 * 331 * @param equityLogId the primary key of the current social equity log 332 * @param userId the user id to search with 333 * @param actionId the action id to search with 334 * @param active the active to search with 335 * @param type the type to search with 336 * @param orderByComparator the comparator to order the set by 337 * @return the previous, current, and next social equity log 338 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 339 * @throws SystemException if a system exception occurred 340 */ 341 public com.liferay.portlet.social.model.SocialEquityLog[] findByU_AID_A_T_PrevAndNext( 342 long equityLogId, long userId, java.lang.String actionId, 343 boolean active, int type, 344 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 345 throws com.liferay.portal.kernel.exception.SystemException, 346 com.liferay.portlet.social.NoSuchEquityLogException; 347 348 /** 349 * Finds all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and type = ?. 350 * 351 * @param assetEntryId the asset entry id to search with 352 * @param actionId the action id to search with 353 * @param active the active to search with 354 * @param type the type to search with 355 * @return the matching social equity logs 356 * @throws SystemException if a system exception occurred 357 */ 358 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_AID_A_T( 359 long assetEntryId, java.lang.String actionId, boolean active, int type) 360 throws com.liferay.portal.kernel.exception.SystemException; 361 362 /** 363 * Finds a range of all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and type = ?. 364 * 365 * <p> 366 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 367 * </p> 368 * 369 * @param assetEntryId the asset entry id to search with 370 * @param actionId the action id to search with 371 * @param active the active to search with 372 * @param type the type to search with 373 * @param start the lower bound of the range of social equity logs to return 374 * @param end the upper bound of the range of social equity logs to return (not inclusive) 375 * @return the range of matching social equity logs 376 * @throws SystemException if a system exception occurred 377 */ 378 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_AID_A_T( 379 long assetEntryId, java.lang.String actionId, boolean active, int type, 380 int start, int end) 381 throws com.liferay.portal.kernel.exception.SystemException; 382 383 /** 384 * Finds an ordered range of all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and type = ?. 385 * 386 * <p> 387 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 388 * </p> 389 * 390 * @param assetEntryId the asset entry id to search with 391 * @param actionId the action id to search with 392 * @param active the active to search with 393 * @param type the type to search with 394 * @param start the lower bound of the range of social equity logs to return 395 * @param end the upper bound of the range of social equity logs to return (not inclusive) 396 * @param orderByComparator the comparator to order the results by 397 * @return the ordered range of matching social equity logs 398 * @throws SystemException if a system exception occurred 399 */ 400 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_AID_A_T( 401 long assetEntryId, java.lang.String actionId, boolean active, int type, 402 int start, int end, 403 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 404 throws com.liferay.portal.kernel.exception.SystemException; 405 406 /** 407 * Finds the first social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and type = ?. 408 * 409 * <p> 410 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 411 * </p> 412 * 413 * @param assetEntryId the asset entry id to search with 414 * @param actionId the action id to search with 415 * @param active the active to search with 416 * @param type the type to search with 417 * @param orderByComparator the comparator to order the set by 418 * @return the first matching social equity log 419 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 420 * @throws SystemException if a system exception occurred 421 */ 422 public com.liferay.portlet.social.model.SocialEquityLog findByAEI_AID_A_T_First( 423 long assetEntryId, java.lang.String actionId, boolean active, int type, 424 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 425 throws com.liferay.portal.kernel.exception.SystemException, 426 com.liferay.portlet.social.NoSuchEquityLogException; 427 428 /** 429 * Finds the last social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and type = ?. 430 * 431 * <p> 432 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 433 * </p> 434 * 435 * @param assetEntryId the asset entry id to search with 436 * @param actionId the action id to search with 437 * @param active the active to search with 438 * @param type the type to search with 439 * @param orderByComparator the comparator to order the set by 440 * @return the last matching social equity log 441 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 442 * @throws SystemException if a system exception occurred 443 */ 444 public com.liferay.portlet.social.model.SocialEquityLog findByAEI_AID_A_T_Last( 445 long assetEntryId, java.lang.String actionId, boolean active, int type, 446 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 447 throws com.liferay.portal.kernel.exception.SystemException, 448 com.liferay.portlet.social.NoSuchEquityLogException; 449 450 /** 451 * Finds the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and type = ?. 452 * 453 * <p> 454 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 455 * </p> 456 * 457 * @param equityLogId the primary key of the current social equity log 458 * @param assetEntryId the asset entry id to search with 459 * @param actionId the action id to search with 460 * @param active the active to search with 461 * @param type the type to search with 462 * @param orderByComparator the comparator to order the set by 463 * @return the previous, current, and next social equity log 464 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 465 * @throws SystemException if a system exception occurred 466 */ 467 public com.liferay.portlet.social.model.SocialEquityLog[] findByAEI_AID_A_T_PrevAndNext( 468 long equityLogId, long assetEntryId, java.lang.String actionId, 469 boolean active, int type, 470 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 471 throws com.liferay.portal.kernel.exception.SystemException, 472 com.liferay.portlet.social.NoSuchEquityLogException; 473 474 /** 475 * Finds all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 476 * 477 * @param userId the user id to search with 478 * @param actionId the action id to search with 479 * @param actionDate the action date to search with 480 * @param active the active to search with 481 * @param type the type to search with 482 * @return the matching social equity logs 483 * @throws SystemException if a system exception occurred 484 */ 485 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByU_AID_AD_A_T( 486 long userId, java.lang.String actionId, int actionDate, boolean active, 487 int type) throws com.liferay.portal.kernel.exception.SystemException; 488 489 /** 490 * Finds a range of all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 491 * 492 * <p> 493 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 494 * </p> 495 * 496 * @param userId the user id to search with 497 * @param actionId the action id to search with 498 * @param actionDate the action date to search with 499 * @param active the active to search with 500 * @param type the type to search with 501 * @param start the lower bound of the range of social equity logs to return 502 * @param end the upper bound of the range of social equity logs to return (not inclusive) 503 * @return the range of matching social equity logs 504 * @throws SystemException if a system exception occurred 505 */ 506 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByU_AID_AD_A_T( 507 long userId, java.lang.String actionId, int actionDate, boolean active, 508 int type, int start, int end) 509 throws com.liferay.portal.kernel.exception.SystemException; 510 511 /** 512 * Finds an ordered range of all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 513 * 514 * <p> 515 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 516 * </p> 517 * 518 * @param userId the user id to search with 519 * @param actionId the action id to search with 520 * @param actionDate the action date to search with 521 * @param active the active to search with 522 * @param type the type to search with 523 * @param start the lower bound of the range of social equity logs to return 524 * @param end the upper bound of the range of social equity logs to return (not inclusive) 525 * @param orderByComparator the comparator to order the results by 526 * @return the ordered range of matching social equity logs 527 * @throws SystemException if a system exception occurred 528 */ 529 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByU_AID_AD_A_T( 530 long userId, java.lang.String actionId, int actionDate, boolean active, 531 int type, int start, int end, 532 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 533 throws com.liferay.portal.kernel.exception.SystemException; 534 535 /** 536 * Finds the first social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 537 * 538 * <p> 539 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 540 * </p> 541 * 542 * @param userId the user id to search with 543 * @param actionId the action id to search with 544 * @param actionDate the action date to search with 545 * @param active the active to search with 546 * @param type the type to search with 547 * @param orderByComparator the comparator to order the set by 548 * @return the first matching social equity log 549 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 550 * @throws SystemException if a system exception occurred 551 */ 552 public com.liferay.portlet.social.model.SocialEquityLog findByU_AID_AD_A_T_First( 553 long userId, java.lang.String actionId, int actionDate, boolean active, 554 int type, 555 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 556 throws com.liferay.portal.kernel.exception.SystemException, 557 com.liferay.portlet.social.NoSuchEquityLogException; 558 559 /** 560 * Finds the last social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 561 * 562 * <p> 563 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 564 * </p> 565 * 566 * @param userId the user id to search with 567 * @param actionId the action id to search with 568 * @param actionDate the action date to search with 569 * @param active the active to search with 570 * @param type the type to search with 571 * @param orderByComparator the comparator to order the set by 572 * @return the last matching social equity log 573 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 574 * @throws SystemException if a system exception occurred 575 */ 576 public com.liferay.portlet.social.model.SocialEquityLog findByU_AID_AD_A_T_Last( 577 long userId, java.lang.String actionId, int actionDate, boolean active, 578 int type, 579 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 580 throws com.liferay.portal.kernel.exception.SystemException, 581 com.liferay.portlet.social.NoSuchEquityLogException; 582 583 /** 584 * Finds the social equity logs before and after the current social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 585 * 586 * <p> 587 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 588 * </p> 589 * 590 * @param equityLogId the primary key of the current social equity log 591 * @param userId the user id to search with 592 * @param actionId the action id to search with 593 * @param actionDate the action date to search with 594 * @param active the active to search with 595 * @param type the type to search with 596 * @param orderByComparator the comparator to order the set by 597 * @return the previous, current, and next social equity log 598 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 599 * @throws SystemException if a system exception occurred 600 */ 601 public com.liferay.portlet.social.model.SocialEquityLog[] findByU_AID_AD_A_T_PrevAndNext( 602 long equityLogId, long userId, java.lang.String actionId, 603 int actionDate, boolean active, int type, 604 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 605 throws com.liferay.portal.kernel.exception.SystemException, 606 com.liferay.portlet.social.NoSuchEquityLogException; 607 608 /** 609 * Finds all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 610 * 611 * @param assetEntryId the asset entry id to search with 612 * @param actionId the action id to search with 613 * @param actionDate the action date to search with 614 * @param active the active to search with 615 * @param type the type to search with 616 * @return the matching social equity logs 617 * @throws SystemException if a system exception occurred 618 */ 619 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_AID_AD_A_T( 620 long assetEntryId, java.lang.String actionId, int actionDate, 621 boolean active, int type) 622 throws com.liferay.portal.kernel.exception.SystemException; 623 624 /** 625 * Finds a range of all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 626 * 627 * <p> 628 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 629 * </p> 630 * 631 * @param assetEntryId the asset entry id to search with 632 * @param actionId the action id to search with 633 * @param actionDate the action date to search with 634 * @param active the active to search with 635 * @param type the type to search with 636 * @param start the lower bound of the range of social equity logs to return 637 * @param end the upper bound of the range of social equity logs to return (not inclusive) 638 * @return the range of matching social equity logs 639 * @throws SystemException if a system exception occurred 640 */ 641 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_AID_AD_A_T( 642 long assetEntryId, java.lang.String actionId, int actionDate, 643 boolean active, int type, int start, int end) 644 throws com.liferay.portal.kernel.exception.SystemException; 645 646 /** 647 * Finds an ordered range of all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 648 * 649 * <p> 650 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 651 * </p> 652 * 653 * @param assetEntryId the asset entry id to search with 654 * @param actionId the action id to search with 655 * @param actionDate the action date to search with 656 * @param active the active to search with 657 * @param type the type to search with 658 * @param start the lower bound of the range of social equity logs to return 659 * @param end the upper bound of the range of social equity logs to return (not inclusive) 660 * @param orderByComparator the comparator to order the results by 661 * @return the ordered range of matching social equity logs 662 * @throws SystemException if a system exception occurred 663 */ 664 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findByAEI_AID_AD_A_T( 665 long assetEntryId, java.lang.String actionId, int actionDate, 666 boolean active, int type, int start, int end, 667 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 668 throws com.liferay.portal.kernel.exception.SystemException; 669 670 /** 671 * Finds the first social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 672 * 673 * <p> 674 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 675 * </p> 676 * 677 * @param assetEntryId the asset entry id to search with 678 * @param actionId the action id to search with 679 * @param actionDate the action date to search with 680 * @param active the active to search with 681 * @param type the type to search with 682 * @param orderByComparator the comparator to order the set by 683 * @return the first matching social equity log 684 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 685 * @throws SystemException if a system exception occurred 686 */ 687 public com.liferay.portlet.social.model.SocialEquityLog findByAEI_AID_AD_A_T_First( 688 long assetEntryId, java.lang.String actionId, int actionDate, 689 boolean active, int type, 690 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 691 throws com.liferay.portal.kernel.exception.SystemException, 692 com.liferay.portlet.social.NoSuchEquityLogException; 693 694 /** 695 * Finds the last social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 696 * 697 * <p> 698 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 699 * </p> 700 * 701 * @param assetEntryId the asset entry id to search with 702 * @param actionId the action id to search with 703 * @param actionDate the action date to search with 704 * @param active the active to search with 705 * @param type the type to search with 706 * @param orderByComparator the comparator to order the set by 707 * @return the last matching social equity log 708 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 709 * @throws SystemException if a system exception occurred 710 */ 711 public com.liferay.portlet.social.model.SocialEquityLog findByAEI_AID_AD_A_T_Last( 712 long assetEntryId, java.lang.String actionId, int actionDate, 713 boolean active, int type, 714 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 715 throws com.liferay.portal.kernel.exception.SystemException, 716 com.liferay.portlet.social.NoSuchEquityLogException; 717 718 /** 719 * Finds the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 720 * 721 * <p> 722 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 723 * </p> 724 * 725 * @param equityLogId the primary key of the current social equity log 726 * @param assetEntryId the asset entry id to search with 727 * @param actionId the action id to search with 728 * @param actionDate the action date to search with 729 * @param active the active to search with 730 * @param type the type to search with 731 * @param orderByComparator the comparator to order the set by 732 * @return the previous, current, and next social equity log 733 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a social equity log with the primary key could not be found 734 * @throws SystemException if a system exception occurred 735 */ 736 public com.liferay.portlet.social.model.SocialEquityLog[] findByAEI_AID_AD_A_T_PrevAndNext( 737 long equityLogId, long assetEntryId, java.lang.String actionId, 738 int actionDate, boolean active, int type, 739 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 740 throws com.liferay.portal.kernel.exception.SystemException, 741 com.liferay.portlet.social.NoSuchEquityLogException; 742 743 /** 744 * Finds the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? or throws a {@link com.liferay.portlet.social.NoSuchEquityLogException} if it could not be found. 745 * 746 * @param userId the user id to search with 747 * @param assetEntryId the asset entry id to search with 748 * @param actionId the action id to search with 749 * @param actionDate the action date to search with 750 * @param active the active to search with 751 * @param type the type to search with 752 * @return the matching social equity log 753 * @throws com.liferay.portlet.social.NoSuchEquityLogException if a matching social equity log could not be found 754 * @throws SystemException if a system exception occurred 755 */ 756 public com.liferay.portlet.social.model.SocialEquityLog findByU_AEI_AID_AD_A_T( 757 long userId, long assetEntryId, java.lang.String actionId, 758 int actionDate, boolean active, int type) 759 throws com.liferay.portal.kernel.exception.SystemException, 760 com.liferay.portlet.social.NoSuchEquityLogException; 761 762 /** 763 * Finds the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 764 * 765 * @param userId the user id to search with 766 * @param assetEntryId the asset entry id to search with 767 * @param actionId the action id to search with 768 * @param actionDate the action date to search with 769 * @param active the active to search with 770 * @param type the type to search with 771 * @return the matching social equity log, or <code>null</code> if a matching social equity log could not be found 772 * @throws SystemException if a system exception occurred 773 */ 774 public com.liferay.portlet.social.model.SocialEquityLog fetchByU_AEI_AID_AD_A_T( 775 long userId, long assetEntryId, java.lang.String actionId, 776 int actionDate, boolean active, int type) 777 throws com.liferay.portal.kernel.exception.SystemException; 778 779 /** 780 * Finds the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 781 * 782 * @param userId the user id to search with 783 * @param assetEntryId the asset entry id to search with 784 * @param actionId the action id to search with 785 * @param actionDate the action date to search with 786 * @param active the active to search with 787 * @param type the type to search with 788 * @return the matching social equity log, or <code>null</code> if a matching social equity log could not be found 789 * @throws SystemException if a system exception occurred 790 */ 791 public com.liferay.portlet.social.model.SocialEquityLog fetchByU_AEI_AID_AD_A_T( 792 long userId, long assetEntryId, java.lang.String actionId, 793 int actionDate, boolean active, int type, boolean retrieveFromCache) 794 throws com.liferay.portal.kernel.exception.SystemException; 795 796 /** 797 * Finds all the social equity logs. 798 * 799 * @return the social equity logs 800 * @throws SystemException if a system exception occurred 801 */ 802 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findAll() 803 throws com.liferay.portal.kernel.exception.SystemException; 804 805 /** 806 * Finds a range of all the social equity logs. 807 * 808 * <p> 809 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 810 * </p> 811 * 812 * @param start the lower bound of the range of social equity logs to return 813 * @param end the upper bound of the range of social equity logs to return (not inclusive) 814 * @return the range of social equity logs 815 * @throws SystemException if a system exception occurred 816 */ 817 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findAll( 818 int start, int end) 819 throws com.liferay.portal.kernel.exception.SystemException; 820 821 /** 822 * Finds an ordered range of all the social equity logs. 823 * 824 * <p> 825 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 826 * </p> 827 * 828 * @param start the lower bound of the range of social equity logs to return 829 * @param end the upper bound of the range of social equity logs to return (not inclusive) 830 * @param orderByComparator the comparator to order the results by 831 * @return the ordered range of social equity logs 832 * @throws SystemException if a system exception occurred 833 */ 834 public java.util.List<com.liferay.portlet.social.model.SocialEquityLog> findAll( 835 int start, int end, 836 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 837 throws com.liferay.portal.kernel.exception.SystemException; 838 839 /** 840 * Removes all the social equity logs where assetEntryId = ? and type = ? and active = ? from the database. 841 * 842 * @param assetEntryId the asset entry id to search with 843 * @param type the type to search with 844 * @param active the active to search with 845 * @throws SystemException if a system exception occurred 846 */ 847 public void removeByAEI_T_A(long assetEntryId, int type, boolean active) 848 throws com.liferay.portal.kernel.exception.SystemException; 849 850 /** 851 * Removes all the social equity logs where userId = ? and actionId = ? and active = ? and type = ? from the database. 852 * 853 * @param userId the user id to search with 854 * @param actionId the action id to search with 855 * @param active the active to search with 856 * @param type the type to search with 857 * @throws SystemException if a system exception occurred 858 */ 859 public void removeByU_AID_A_T(long userId, java.lang.String actionId, 860 boolean active, int type) 861 throws com.liferay.portal.kernel.exception.SystemException; 862 863 /** 864 * Removes all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and type = ? from the database. 865 * 866 * @param assetEntryId the asset entry id to search with 867 * @param actionId the action id to search with 868 * @param active the active to search with 869 * @param type the type to search with 870 * @throws SystemException if a system exception occurred 871 */ 872 public void removeByAEI_AID_A_T(long assetEntryId, 873 java.lang.String actionId, boolean active, int type) 874 throws com.liferay.portal.kernel.exception.SystemException; 875 876 /** 877 * Removes all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? from the database. 878 * 879 * @param userId the user id to search with 880 * @param actionId the action id to search with 881 * @param actionDate the action date to search with 882 * @param active the active to search with 883 * @param type the type to search with 884 * @throws SystemException if a system exception occurred 885 */ 886 public void removeByU_AID_AD_A_T(long userId, java.lang.String actionId, 887 int actionDate, boolean active, int type) 888 throws com.liferay.portal.kernel.exception.SystemException; 889 890 /** 891 * Removes all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? from the database. 892 * 893 * @param assetEntryId the asset entry id to search with 894 * @param actionId the action id to search with 895 * @param actionDate the action date to search with 896 * @param active the active to search with 897 * @param type the type to search with 898 * @throws SystemException if a system exception occurred 899 */ 900 public void removeByAEI_AID_AD_A_T(long assetEntryId, 901 java.lang.String actionId, int actionDate, boolean active, int type) 902 throws com.liferay.portal.kernel.exception.SystemException; 903 904 /** 905 * Removes the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? from the database. 906 * 907 * @param userId the user id to search with 908 * @param assetEntryId the asset entry id to search with 909 * @param actionId the action id to search with 910 * @param actionDate the action date to search with 911 * @param active the active to search with 912 * @param type the type to search with 913 * @throws SystemException if a system exception occurred 914 */ 915 public void removeByU_AEI_AID_AD_A_T(long userId, long assetEntryId, 916 java.lang.String actionId, int actionDate, boolean active, int type) 917 throws com.liferay.portal.kernel.exception.SystemException, 918 com.liferay.portlet.social.NoSuchEquityLogException; 919 920 /** 921 * Removes all the social equity logs from the database. 922 * 923 * @throws SystemException if a system exception occurred 924 */ 925 public void removeAll() 926 throws com.liferay.portal.kernel.exception.SystemException; 927 928 /** 929 * Counts all the social equity logs where assetEntryId = ? and type = ? and active = ?. 930 * 931 * @param assetEntryId the asset entry id to search with 932 * @param type the type to search with 933 * @param active the active to search with 934 * @return the number of matching social equity logs 935 * @throws SystemException if a system exception occurred 936 */ 937 public int countByAEI_T_A(long assetEntryId, int type, boolean active) 938 throws com.liferay.portal.kernel.exception.SystemException; 939 940 /** 941 * Counts all the social equity logs where userId = ? and actionId = ? and active = ? and type = ?. 942 * 943 * @param userId the user id to search with 944 * @param actionId the action id to search with 945 * @param active the active to search with 946 * @param type the type to search with 947 * @return the number of matching social equity logs 948 * @throws SystemException if a system exception occurred 949 */ 950 public int countByU_AID_A_T(long userId, java.lang.String actionId, 951 boolean active, int type) 952 throws com.liferay.portal.kernel.exception.SystemException; 953 954 /** 955 * Counts all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and type = ?. 956 * 957 * @param assetEntryId the asset entry id to search with 958 * @param actionId the action id to search with 959 * @param active the active to search with 960 * @param type the type to search with 961 * @return the number of matching social equity logs 962 * @throws SystemException if a system exception occurred 963 */ 964 public int countByAEI_AID_A_T(long assetEntryId, java.lang.String actionId, 965 boolean active, int type) 966 throws com.liferay.portal.kernel.exception.SystemException; 967 968 /** 969 * Counts all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 970 * 971 * @param userId the user id to search with 972 * @param actionId the action id to search with 973 * @param actionDate the action date to search with 974 * @param active the active to search with 975 * @param type the type to search with 976 * @return the number of matching social equity logs 977 * @throws SystemException if a system exception occurred 978 */ 979 public int countByU_AID_AD_A_T(long userId, java.lang.String actionId, 980 int actionDate, boolean active, int type) 981 throws com.liferay.portal.kernel.exception.SystemException; 982 983 /** 984 * Counts all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 985 * 986 * @param assetEntryId the asset entry id to search with 987 * @param actionId the action id to search with 988 * @param actionDate the action date to search with 989 * @param active the active to search with 990 * @param type the type to search with 991 * @return the number of matching social equity logs 992 * @throws SystemException if a system exception occurred 993 */ 994 public int countByAEI_AID_AD_A_T(long assetEntryId, 995 java.lang.String actionId, int actionDate, boolean active, int type) 996 throws com.liferay.portal.kernel.exception.SystemException; 997 998 /** 999 * Counts all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ?. 1000 * 1001 * @param userId the user id to search with 1002 * @param assetEntryId the asset entry id to search with 1003 * @param actionId the action id to search with 1004 * @param actionDate the action date to search with 1005 * @param active the active to search with 1006 * @param type the type to search with 1007 * @return the number of matching social equity logs 1008 * @throws SystemException if a system exception occurred 1009 */ 1010 public int countByU_AEI_AID_AD_A_T(long userId, long assetEntryId, 1011 java.lang.String actionId, int actionDate, boolean active, int type) 1012 throws com.liferay.portal.kernel.exception.SystemException; 1013 1014 /** 1015 * Counts all the social equity logs. 1016 * 1017 * @return the number of social equity logs 1018 * @throws SystemException if a system exception occurred 1019 */ 1020 public int countAll() 1021 throws com.liferay.portal.kernel.exception.SystemException; 1022 }