@ProviderType public interface UserTrackerPathPersistence extends BasePersistence<UserTrackerPath>
Caching information and settings can be found in portal.properties
UserTrackerPathUtil
Modifier and Type | Method and Description |
---|---|
void |
cacheResult(java.util.List<UserTrackerPath> userTrackerPaths)
Caches the user tracker paths in the entity cache if it is enabled.
|
void |
cacheResult(UserTrackerPath userTrackerPath)
Caches the user tracker path in the entity cache if it is enabled.
|
int |
countAll()
Returns the number of user tracker paths.
|
int |
countByUserTrackerId(long userTrackerId)
Returns the number of user tracker paths where userTrackerId = ?.
|
UserTrackerPath |
create(long userTrackerPathId)
Creates a new user tracker path with the primary key.
|
UserTrackerPath |
fetchByPrimaryKey(long userTrackerPathId)
Returns the user tracker path with the primary key or returns
null if it could not be found. |
java.util.Map<java.io.Serializable,UserTrackerPath> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
UserTrackerPath |
fetchByUserTrackerId_First(long userTrackerId,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns the first user tracker path in the ordered set where userTrackerId = ?.
|
UserTrackerPath |
fetchByUserTrackerId_Last(long userTrackerId,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns the last user tracker path in the ordered set where userTrackerId = ?.
|
java.util.List<UserTrackerPath> |
findAll()
Returns all the user tracker paths.
|
java.util.List<UserTrackerPath> |
findAll(int start,
int end)
Returns a range of all the user tracker paths.
|
java.util.List<UserTrackerPath> |
findAll(int start,
int end,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns an ordered range of all the user tracker paths.
|
java.util.List<UserTrackerPath> |
findAll(int start,
int end,
OrderByComparator<UserTrackerPath> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the user tracker paths.
|
UserTrackerPath |
findByPrimaryKey(long userTrackerPathId)
Returns the user tracker path with the primary key or throws a
NoSuchUserTrackerPathException if it could not be found. |
UserTrackerPath |
findByUserTrackerId_First(long userTrackerId,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns the first user tracker path in the ordered set where userTrackerId = ?.
|
UserTrackerPath |
findByUserTrackerId_Last(long userTrackerId,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns the last user tracker path in the ordered set where userTrackerId = ?.
|
UserTrackerPath[] |
findByUserTrackerId_PrevAndNext(long userTrackerPathId,
long userTrackerId,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns the user tracker paths before and after the current user tracker path in the ordered set where userTrackerId = ?.
|
java.util.List<UserTrackerPath> |
findByUserTrackerId(long userTrackerId)
Returns all the user tracker paths where userTrackerId = ?.
|
java.util.List<UserTrackerPath> |
findByUserTrackerId(long userTrackerId,
int start,
int end)
Returns a range of all the user tracker paths where userTrackerId = ?.
|
java.util.List<UserTrackerPath> |
findByUserTrackerId(long userTrackerId,
int start,
int end,
OrderByComparator<UserTrackerPath> orderByComparator)
Returns an ordered range of all the user tracker paths where userTrackerId = ?.
|
java.util.List<UserTrackerPath> |
findByUserTrackerId(long userTrackerId,
int start,
int end,
OrderByComparator<UserTrackerPath> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the user tracker paths where userTrackerId = ?.
|
java.util.Set<java.lang.String> |
getBadColumnNames() |
UserTrackerPath |
remove(long userTrackerPathId)
Removes the user tracker path with the primary key from the database.
|
void |
removeAll()
Removes all the user tracker paths from the database.
|
void |
removeByUserTrackerId(long userTrackerId)
Removes all the user tracker paths where userTrackerId = ? from the database.
|
UserTrackerPath |
updateImpl(UserTrackerPath userTrackerPath) |
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
java.util.Map<java.io.Serializable,UserTrackerPath> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<UserTrackerPath>
java.util.List<UserTrackerPath> findByUserTrackerId(long userTrackerId)
userTrackerId
- the user tracker IDjava.util.List<UserTrackerPath> findByUserTrackerId(long userTrackerId, 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, then the query will include the default ORDER BY logic from UserTrackerPathModelImpl
.
userTrackerId
- the user tracker IDstart
- the lower bound of the range of user tracker pathsend
- the upper bound of the range of user tracker paths (not inclusive)java.util.List<UserTrackerPath> findByUserTrackerId(long userTrackerId, int start, int end, OrderByComparator<UserTrackerPath> 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, then the query will include the default ORDER BY logic from UserTrackerPathModelImpl
.
userTrackerId
- the user tracker IDstart
- the lower bound of the range of user tracker pathsend
- the upper bound of the range of user tracker paths (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)java.util.List<UserTrackerPath> findByUserTrackerId(long userTrackerId, int start, int end, OrderByComparator<UserTrackerPath> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from UserTrackerPathModelImpl
.
userTrackerId
- the user tracker IDstart
- the lower bound of the range of user tracker pathsend
- the upper bound of the range of user tracker paths (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cacheUserTrackerPath findByUserTrackerId_First(long userTrackerId, OrderByComparator<UserTrackerPath> orderByComparator) throws NoSuchUserTrackerPathException
userTrackerId
- the user tracker IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchUserTrackerPathException
- if a matching user tracker path could not be foundUserTrackerPath fetchByUserTrackerId_First(long userTrackerId, OrderByComparator<UserTrackerPath> orderByComparator)
userTrackerId
- the user tracker IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching user tracker path could not be foundUserTrackerPath findByUserTrackerId_Last(long userTrackerId, OrderByComparator<UserTrackerPath> orderByComparator) throws NoSuchUserTrackerPathException
userTrackerId
- the user tracker IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchUserTrackerPathException
- if a matching user tracker path could not be foundUserTrackerPath fetchByUserTrackerId_Last(long userTrackerId, OrderByComparator<UserTrackerPath> orderByComparator)
userTrackerId
- the user tracker IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching user tracker path could not be foundUserTrackerPath[] findByUserTrackerId_PrevAndNext(long userTrackerPathId, long userTrackerId, OrderByComparator<UserTrackerPath> orderByComparator) throws NoSuchUserTrackerPathException
userTrackerPathId
- the primary key of the current user tracker pathuserTrackerId
- the user tracker IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchUserTrackerPathException
- if a user tracker path with the primary key could not be foundvoid removeByUserTrackerId(long userTrackerId)
userTrackerId
- the user tracker IDint countByUserTrackerId(long userTrackerId)
userTrackerId
- the user tracker IDvoid cacheResult(UserTrackerPath userTrackerPath)
userTrackerPath
- the user tracker pathvoid cacheResult(java.util.List<UserTrackerPath> userTrackerPaths)
userTrackerPaths
- the user tracker pathsUserTrackerPath create(long userTrackerPathId)
userTrackerPathId
- the primary key for the new user tracker pathUserTrackerPath remove(long userTrackerPathId) throws NoSuchUserTrackerPathException
userTrackerPathId
- the primary key of the user tracker pathNoSuchUserTrackerPathException
- if a user tracker path with the primary key could not be foundUserTrackerPath updateImpl(UserTrackerPath userTrackerPath)
UserTrackerPath findByPrimaryKey(long userTrackerPathId) throws NoSuchUserTrackerPathException
NoSuchUserTrackerPathException
if it could not be found.userTrackerPathId
- the primary key of the user tracker pathNoSuchUserTrackerPathException
- if a user tracker path with the primary key could not be foundUserTrackerPath fetchByPrimaryKey(long userTrackerPathId)
null
if it could not be found.userTrackerPathId
- the primary key of the user tracker pathnull
if a user tracker path with the primary key could not be foundjava.util.List<UserTrackerPath> findAll()
java.util.List<UserTrackerPath> 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, then the query will include the default ORDER BY logic from UserTrackerPathModelImpl
.
start
- the lower bound of the range of user tracker pathsend
- the upper bound of the range of user tracker paths (not inclusive)java.util.List<UserTrackerPath> findAll(int start, int end, OrderByComparator<UserTrackerPath> 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, then the query will include the default ORDER BY logic from UserTrackerPathModelImpl
.
start
- the lower bound of the range of user tracker pathsend
- the upper bound of the range of user tracker paths (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)java.util.List<UserTrackerPath> findAll(int start, int end, OrderByComparator<UserTrackerPath> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from UserTrackerPathModelImpl
.
start
- the lower bound of the range of user tracker pathsend
- the upper bound of the range of user tracker paths (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachevoid removeAll()
int countAll()
java.util.Set<java.lang.String> getBadColumnNames()
getBadColumnNames
in interface BasePersistence<UserTrackerPath>