@ProviderType
public class WebDAVPropsUtil
extends Object
WebDAVPropsPersistenceImpl
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
WebDAVPropsPersistence
,
WebDAVPropsPersistenceImpl
Constructor and Description |
---|
WebDAVPropsUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(List<WebDAVProps> webDAVPropses)
Caches the web dav propses in the entity cache if it is enabled.
|
static void |
cacheResult(WebDAVProps webDAVProps)
Caches the web dav props in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(WebDAVProps webDAVProps) |
static int |
countAll()
Returns the number of web dav propses.
|
static int |
countByC_C(long classNameId,
long classPK)
Returns the number of web dav propses where classNameId = ? and classPK = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static WebDAVProps |
create(long webDavPropsId)
Creates a new web dav props with the primary key.
|
static WebDAVProps |
fetchByC_C(long classNameId,
long classPK)
Returns the web dav props where classNameId = ? and classPK = ? or returns
null if it could not be found. |
static WebDAVProps |
fetchByC_C(long classNameId,
long classPK,
boolean retrieveFromCache)
Returns the web dav props where classNameId = ? and classPK = ? or returns
null if it could not be found, optionally using the finder cache. |
static WebDAVProps |
fetchByPrimaryKey(long webDavPropsId)
Returns the web dav props with the primary key or returns
null if it could not be found. |
static Map<Serializable,WebDAVProps> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
static List<WebDAVProps> |
findAll()
Returns all the web dav propses.
|
static List<WebDAVProps> |
findAll(int start,
int end)
Returns a range of all the web dav propses.
|
static List<WebDAVProps> |
findAll(int start,
int end,
OrderByComparator<WebDAVProps> orderByComparator)
Returns an ordered range of all the web dav propses.
|
static List<WebDAVProps> |
findAll(int start,
int end,
OrderByComparator<WebDAVProps> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the web dav propses.
|
static WebDAVProps |
findByC_C(long classNameId,
long classPK)
Returns the web dav props where classNameId = ? and classPK = ? or throws a
NoSuchWebDAVPropsException if it could not be found. |
static WebDAVProps |
findByPrimaryKey(long webDavPropsId)
Returns the web dav props with the primary key or throws a
NoSuchWebDAVPropsException if it could not be found. |
static List<WebDAVProps> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static List<WebDAVProps> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static List<WebDAVProps> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<WebDAVProps> orderByComparator) |
static WebDAVPropsPersistence |
getPersistence() |
static WebDAVProps |
remove(long webDavPropsId)
Removes the web dav props with the primary key from the database.
|
static void |
removeAll()
Removes all the web dav propses from the database.
|
static WebDAVProps |
removeByC_C(long classNameId,
long classPK)
Removes the web dav props where classNameId = ? and classPK = ? from the database.
|
static WebDAVProps |
update(WebDAVProps webDAVProps) |
static WebDAVProps |
update(WebDAVProps webDAVProps,
ServiceContext serviceContext) |
static WebDAVProps |
updateImpl(WebDAVProps webDAVProps) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(WebDAVProps webDAVProps)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<WebDAVProps> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<WebDAVProps> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<WebDAVProps> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<WebDAVProps> orderByComparator)
public static WebDAVProps update(WebDAVProps webDAVProps)
public static WebDAVProps update(WebDAVProps webDAVProps, ServiceContext serviceContext)
public static WebDAVProps findByC_C(long classNameId, long classPK) throws NoSuchWebDAVPropsException
NoSuchWebDAVPropsException
if it could not be found.classNameId
- the class name IDclassPK
- the class pkNoSuchWebDAVPropsException
- if a matching web dav props could not be foundpublic static WebDAVProps fetchByC_C(long classNameId, long classPK)
null
if it could not be found. Uses the finder cache.classNameId
- the class name IDclassPK
- the class pknull
if a matching web dav props could not be foundpublic static WebDAVProps fetchByC_C(long classNameId, long classPK, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.classNameId
- the class name IDclassPK
- the class pkretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching web dav props could not be foundpublic static WebDAVProps removeByC_C(long classNameId, long classPK) throws NoSuchWebDAVPropsException
classNameId
- the class name IDclassPK
- the class pkNoSuchWebDAVPropsException
public static int countByC_C(long classNameId, long classPK)
classNameId
- the class name IDclassPK
- the class pkpublic static void cacheResult(WebDAVProps webDAVProps)
webDAVProps
- the web dav propspublic static void cacheResult(List<WebDAVProps> webDAVPropses)
webDAVPropses
- the web dav propsespublic static WebDAVProps create(long webDavPropsId)
webDavPropsId
- the primary key for the new web dav propspublic static WebDAVProps remove(long webDavPropsId) throws NoSuchWebDAVPropsException
webDavPropsId
- the primary key of the web dav propsNoSuchWebDAVPropsException
- if a web dav props with the primary key could not be foundpublic static WebDAVProps updateImpl(WebDAVProps webDAVProps)
public static WebDAVProps findByPrimaryKey(long webDavPropsId) throws NoSuchWebDAVPropsException
NoSuchWebDAVPropsException
if it could not be found.webDavPropsId
- the primary key of the web dav propsNoSuchWebDAVPropsException
- if a web dav props with the primary key could not be foundpublic static WebDAVProps fetchByPrimaryKey(long webDavPropsId)
null
if it could not be found.webDavPropsId
- the primary key of the web dav propsnull
if a web dav props with the primary key could not be foundpublic static Map<Serializable,WebDAVProps> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<WebDAVProps> findAll()
public static List<WebDAVProps> findAll(int start, int end)
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 WebDAVPropsModelImpl
. 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 web dav propsesend
- the upper bound of the range of web dav propses (not inclusive)public static List<WebDAVProps> findAll(int start, int end, OrderByComparator<WebDAVProps> orderByComparator)
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 WebDAVPropsModelImpl
. 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 web dav propsesend
- the upper bound of the range of web dav propses (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<WebDAVProps> findAll(int start, int end, OrderByComparator<WebDAVProps> orderByComparator, boolean retrieveFromCache)
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 WebDAVPropsModelImpl
. 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 web dav propsesend
- the upper bound of the range of web dav propses (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static void removeAll()
public static int countAll()
public static WebDAVPropsPersistence getPersistence()