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