|
Liferay 6.2-ce-ga5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventUtil
@ProviderType public class DLSyncEventUtil
The persistence utility for the d l sync event service. This utility wraps DLSyncEventPersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
DLSyncEventPersistence
,
DLSyncEventPersistenceImpl
Constructor Summary | |
---|---|
DLSyncEventUtil()
|
Method Summary | |
---|---|
static void |
cacheResult(DLSyncEvent dlSyncEvent)
Caches the d l sync event in the entity cache if it is enabled. |
static void |
cacheResult(List<DLSyncEvent> dlSyncEvents)
Caches the d l sync events in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(DLSyncEvent dlSyncEvent)
|
static int |
countAll()
Returns the number of d l sync events. |
static int |
countByModifiedTime(long modifiedTime)
Returns the number of d l sync events where modifiedTime > ?. |
static int |
countByTypePK(long typePK)
Returns the number of d l sync events where typePK = ?. |
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static DLSyncEvent |
create(long syncEventId)
Creates a new d l sync event with the primary key. |
static DLSyncEvent |
fetchByModifiedTime_First(long modifiedTime,
OrderByComparator orderByComparator)
Returns the first d l sync event in the ordered set where modifiedTime > ?. |
static DLSyncEvent |
fetchByModifiedTime_Last(long modifiedTime,
OrderByComparator orderByComparator)
Returns the last d l sync event in the ordered set where modifiedTime > ?. |
static DLSyncEvent |
fetchByPrimaryKey(long syncEventId)
Returns the d l sync event with the primary key or returns null if it could not be found. |
static DLSyncEvent |
fetchByTypePK(long typePK)
Returns the d l sync event where typePK = ? or returns null if it could not be found. |
static DLSyncEvent |
fetchByTypePK(long typePK,
boolean retrieveFromCache)
Returns the d l sync event where typePK = ? or returns null if it could not be found, optionally using the finder cache. |
static List<DLSyncEvent> |
findAll()
Returns all the d l sync events. |
static List<DLSyncEvent> |
findAll(int start,
int end)
Returns a range of all the d l sync events. |
static List<DLSyncEvent> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the d l sync events. |
static DLSyncEvent |
findByModifiedTime_First(long modifiedTime,
OrderByComparator orderByComparator)
Returns the first d l sync event in the ordered set where modifiedTime > ?. |
static DLSyncEvent |
findByModifiedTime_Last(long modifiedTime,
OrderByComparator orderByComparator)
Returns the last d l sync event in the ordered set where modifiedTime > ?. |
static DLSyncEvent[] |
findByModifiedTime_PrevAndNext(long syncEventId,
long modifiedTime,
OrderByComparator orderByComparator)
Returns the d l sync events before and after the current d l sync event in the ordered set where modifiedTime > ?. |
static List<DLSyncEvent> |
findByModifiedTime(long modifiedTime)
Returns all the d l sync events where modifiedTime > ?. |
static List<DLSyncEvent> |
findByModifiedTime(long modifiedTime,
int start,
int end)
Returns a range of all the d l sync events where modifiedTime > ?. |
static List<DLSyncEvent> |
findByModifiedTime(long modifiedTime,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the d l sync events where modifiedTime > ?. |
static DLSyncEvent |
findByPrimaryKey(long syncEventId)
Returns the d l sync event with the primary key or throws a NoSuchSyncEventException if it could not be found. |
static DLSyncEvent |
findByTypePK(long typePK)
Returns the d l sync event where typePK = ? or throws a NoSuchSyncEventException if it could not be found. |
static List<DLSyncEvent> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<DLSyncEvent> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<DLSyncEvent> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static DLSyncEventPersistence |
getPersistence()
|
static DLSyncEvent |
remove(long syncEventId)
Removes the d l sync event with the primary key from the database. |
static void |
removeAll()
Removes all the d l sync events from the database. |
static void |
removeByModifiedTime(long modifiedTime)
Removes all the d l sync events where modifiedTime > ? from the database. |
static DLSyncEvent |
removeByTypePK(long typePK)
Removes the d l sync event where typePK = ? from the database. |
void |
setPersistence(DLSyncEventPersistence persistence)
Deprecated. As of 6.2.0 |
static DLSyncEvent |
update(DLSyncEvent dlSyncEvent)
|
static DLSyncEvent |
update(DLSyncEvent dlSyncEvent,
ServiceContext serviceContext)
|
static DLSyncEvent |
updateImpl(DLSyncEvent dlSyncEvent)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DLSyncEventUtil()
Method Detail |
---|
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(DLSyncEvent dlSyncEvent)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<DLSyncEvent> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<DLSyncEvent> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<DLSyncEvent> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static DLSyncEvent update(DLSyncEvent dlSyncEvent) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel)
public static DLSyncEvent update(DLSyncEvent dlSyncEvent, ServiceContext serviceContext) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)
public static List<DLSyncEvent> findByModifiedTime(long modifiedTime) throws SystemException
modifiedTime
- the modified time
SystemException
- if a system exception occurredpublic static List<DLSyncEvent> findByModifiedTime(long modifiedTime, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from DLSyncEventModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
modifiedTime
- the modified timestart
- the lower bound of the range of d l sync eventsend
- the upper bound of the range of d l sync events (not inclusive)
SystemException
- if a system exception occurredpublic static List<DLSyncEvent> findByModifiedTime(long modifiedTime, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from DLSyncEventModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
modifiedTime
- the modified timestart
- the lower bound of the range of d l sync eventsend
- the upper bound of the range of d l sync events (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static DLSyncEvent findByModifiedTime_First(long modifiedTime, OrderByComparator orderByComparator) throws SystemException, NoSuchSyncEventException
modifiedTime
- the modified timeorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchSyncEventException
- if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent fetchByModifiedTime_First(long modifiedTime, OrderByComparator orderByComparator) throws SystemException
modifiedTime
- the modified timeorderByComparator
- the comparator to order the set by (optionally null
)
null
if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent findByModifiedTime_Last(long modifiedTime, OrderByComparator orderByComparator) throws SystemException, NoSuchSyncEventException
modifiedTime
- the modified timeorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchSyncEventException
- if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent fetchByModifiedTime_Last(long modifiedTime, OrderByComparator orderByComparator) throws SystemException
modifiedTime
- the modified timeorderByComparator
- the comparator to order the set by (optionally null
)
null
if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent[] findByModifiedTime_PrevAndNext(long syncEventId, long modifiedTime, OrderByComparator orderByComparator) throws SystemException, NoSuchSyncEventException
syncEventId
- the primary key of the current d l sync eventmodifiedTime
- the modified timeorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchSyncEventException
- if a d l sync event with the primary key could not be found
SystemException
- if a system exception occurredpublic static void removeByModifiedTime(long modifiedTime) throws SystemException
modifiedTime
- the modified time
SystemException
- if a system exception occurredpublic static int countByModifiedTime(long modifiedTime) throws SystemException
modifiedTime
- the modified time
SystemException
- if a system exception occurredpublic static DLSyncEvent findByTypePK(long typePK) throws SystemException, NoSuchSyncEventException
NoSuchSyncEventException
if it could not be found.
typePK
- the type p k
NoSuchSyncEventException
- if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent fetchByTypePK(long typePK) throws SystemException
null
if it could not be found. Uses the finder cache.
typePK
- the type p k
null
if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent fetchByTypePK(long typePK, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
typePK
- the type p kretrieveFromCache
- whether to use the finder cache
null
if a matching d l sync event could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent removeByTypePK(long typePK) throws SystemException, NoSuchSyncEventException
typePK
- the type p k
SystemException
- if a system exception occurred
NoSuchSyncEventException
public static int countByTypePK(long typePK) throws SystemException
typePK
- the type p k
SystemException
- if a system exception occurredpublic static void cacheResult(DLSyncEvent dlSyncEvent)
dlSyncEvent
- the d l sync eventpublic static void cacheResult(List<DLSyncEvent> dlSyncEvents)
dlSyncEvents
- the d l sync eventspublic static DLSyncEvent create(long syncEventId)
syncEventId
- the primary key for the new d l sync event
public static DLSyncEvent remove(long syncEventId) throws SystemException, NoSuchSyncEventException
syncEventId
- the primary key of the d l sync event
NoSuchSyncEventException
- if a d l sync event with the primary key could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent updateImpl(DLSyncEvent dlSyncEvent) throws SystemException
SystemException
public static DLSyncEvent findByPrimaryKey(long syncEventId) throws SystemException, NoSuchSyncEventException
NoSuchSyncEventException
if it could not be found.
syncEventId
- the primary key of the d l sync event
NoSuchSyncEventException
- if a d l sync event with the primary key could not be found
SystemException
- if a system exception occurredpublic static DLSyncEvent fetchByPrimaryKey(long syncEventId) throws SystemException
null
if it could not be found.
syncEventId
- the primary key of the d l sync event
null
if a d l sync event with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<DLSyncEvent> findAll() throws SystemException
SystemException
- if a system exception occurredpublic static List<DLSyncEvent> findAll(int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from DLSyncEventModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of d l sync eventsend
- the upper bound of the range of d l sync events (not inclusive)
SystemException
- if a system exception occurredpublic static List<DLSyncEvent> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from DLSyncEventModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of d l sync eventsend
- the upper bound of the range of d l sync events (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static void removeAll() throws SystemException
SystemException
- if a system exception occurredpublic static int countAll() throws SystemException
SystemException
- if a system exception occurredpublic static DLSyncEventPersistence getPersistence()
public void setPersistence(DLSyncEventPersistence persistence)
|
Liferay 6.2-ce-ga5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |