@ProviderType public interface AssetLinkPersistence extends BasePersistence<AssetLink>
Caching information and settings can be found in portal.properties
AssetLinkPersistenceImpl,
AssetLinkUtil| Modifier and Type | Method and Description |
|---|---|
void |
cacheResult(AssetLink assetLink)
Caches the asset link in the entity cache if it is enabled.
|
void |
cacheResult(java.util.List<AssetLink> assetLinks)
Caches the asset links in the entity cache if it is enabled.
|
int |
countAll()
Returns the number of asset links.
|
int |
countByE_E_T(long entryId1,
long entryId2,
int type)
Returns the number of asset links where entryId1 = ? and entryId2 = ? and type = ?.
|
int |
countByE_E(long entryId1,
long entryId2)
Returns the number of asset links where entryId1 = ? and entryId2 = ?.
|
int |
countByE1_T(long entryId1,
int type)
Returns the number of asset links where entryId1 = ? and type = ?.
|
int |
countByE1(long entryId1)
Returns the number of asset links where entryId1 = ?.
|
int |
countByE2_T(long entryId2,
int type)
Returns the number of asset links where entryId2 = ? and type = ?.
|
int |
countByE2(long entryId2)
Returns the number of asset links where entryId2 = ?.
|
AssetLink |
create(long linkId)
Creates a new asset link with the primary key.
|
AssetLink |
fetchByE_E_First(long entryId1,
long entryId2,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId1 = ? and entryId2 = ?.
|
AssetLink |
fetchByE_E_Last(long entryId1,
long entryId2,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId1 = ? and entryId2 = ?.
|
AssetLink |
fetchByE_E_T(long entryId1,
long entryId2,
int type)
Returns the asset link where entryId1 = ? and entryId2 = ? and type = ? or returns
null if it could not be found. |
AssetLink |
fetchByE_E_T(long entryId1,
long entryId2,
int type,
boolean retrieveFromCache)
Returns the asset link where entryId1 = ? and entryId2 = ? and type = ? or returns
null if it could not be found, optionally using the finder cache. |
AssetLink |
fetchByE1_First(long entryId1,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId1 = ?.
|
AssetLink |
fetchByE1_Last(long entryId1,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId1 = ?.
|
AssetLink |
fetchByE1_T_First(long entryId1,
int type,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId1 = ? and type = ?.
|
AssetLink |
fetchByE1_T_Last(long entryId1,
int type,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId1 = ? and type = ?.
|
AssetLink |
fetchByE2_First(long entryId2,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId2 = ?.
|
AssetLink |
fetchByE2_Last(long entryId2,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId2 = ?.
|
AssetLink |
fetchByE2_T_First(long entryId2,
int type,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId2 = ? and type = ?.
|
AssetLink |
fetchByE2_T_Last(long entryId2,
int type,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId2 = ? and type = ?.
|
AssetLink |
fetchByPrimaryKey(long linkId)
Returns the asset link with the primary key or returns
null if it could not be found. |
java.util.List<AssetLink> |
findAll()
Returns all the asset links.
|
java.util.List<AssetLink> |
findAll(int start,
int end)
Returns a range of all the asset links.
|
java.util.List<AssetLink> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the asset links.
|
AssetLink |
findByE_E_First(long entryId1,
long entryId2,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId1 = ? and entryId2 = ?.
|
AssetLink |
findByE_E_Last(long entryId1,
long entryId2,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId1 = ? and entryId2 = ?.
|
AssetLink[] |
findByE_E_PrevAndNext(long linkId,
long entryId1,
long entryId2,
OrderByComparator orderByComparator)
Returns the asset links before and after the current asset link in the ordered set where entryId1 = ? and entryId2 = ?.
|
AssetLink |
findByE_E_T(long entryId1,
long entryId2,
int type)
Returns the asset link where entryId1 = ? and entryId2 = ? and type = ? or throws a
NoSuchLinkException if it could not be found. |
java.util.List<AssetLink> |
findByE_E(long entryId1,
long entryId2)
Returns all the asset links where entryId1 = ? and entryId2 = ?.
|
java.util.List<AssetLink> |
findByE_E(long entryId1,
long entryId2,
int start,
int end)
Returns a range of all the asset links where entryId1 = ? and entryId2 = ?.
|
java.util.List<AssetLink> |
findByE_E(long entryId1,
long entryId2,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the asset links where entryId1 = ? and entryId2 = ?.
|
AssetLink |
findByE1_First(long entryId1,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId1 = ?.
|
AssetLink |
findByE1_Last(long entryId1,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId1 = ?.
|
AssetLink[] |
findByE1_PrevAndNext(long linkId,
long entryId1,
OrderByComparator orderByComparator)
Returns the asset links before and after the current asset link in the ordered set where entryId1 = ?.
|
AssetLink |
findByE1_T_First(long entryId1,
int type,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId1 = ? and type = ?.
|
AssetLink |
findByE1_T_Last(long entryId1,
int type,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId1 = ? and type = ?.
|
AssetLink[] |
findByE1_T_PrevAndNext(long linkId,
long entryId1,
int type,
OrderByComparator orderByComparator)
Returns the asset links before and after the current asset link in the ordered set where entryId1 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE1_T(long entryId1,
int type)
Returns all the asset links where entryId1 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE1_T(long entryId1,
int type,
int start,
int end)
Returns a range of all the asset links where entryId1 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE1_T(long entryId1,
int type,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the asset links where entryId1 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE1(long entryId1)
Returns all the asset links where entryId1 = ?.
|
java.util.List<AssetLink> |
findByE1(long entryId1,
int start,
int end)
Returns a range of all the asset links where entryId1 = ?.
|
java.util.List<AssetLink> |
findByE1(long entryId1,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the asset links where entryId1 = ?.
|
AssetLink |
findByE2_First(long entryId2,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId2 = ?.
|
AssetLink |
findByE2_Last(long entryId2,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId2 = ?.
|
AssetLink[] |
findByE2_PrevAndNext(long linkId,
long entryId2,
OrderByComparator orderByComparator)
Returns the asset links before and after the current asset link in the ordered set where entryId2 = ?.
|
AssetLink |
findByE2_T_First(long entryId2,
int type,
OrderByComparator orderByComparator)
Returns the first asset link in the ordered set where entryId2 = ? and type = ?.
|
AssetLink |
findByE2_T_Last(long entryId2,
int type,
OrderByComparator orderByComparator)
Returns the last asset link in the ordered set where entryId2 = ? and type = ?.
|
AssetLink[] |
findByE2_T_PrevAndNext(long linkId,
long entryId2,
int type,
OrderByComparator orderByComparator)
Returns the asset links before and after the current asset link in the ordered set where entryId2 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE2_T(long entryId2,
int type)
Returns all the asset links where entryId2 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE2_T(long entryId2,
int type,
int start,
int end)
Returns a range of all the asset links where entryId2 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE2_T(long entryId2,
int type,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the asset links where entryId2 = ? and type = ?.
|
java.util.List<AssetLink> |
findByE2(long entryId2)
Returns all the asset links where entryId2 = ?.
|
java.util.List<AssetLink> |
findByE2(long entryId2,
int start,
int end)
Returns a range of all the asset links where entryId2 = ?.
|
java.util.List<AssetLink> |
findByE2(long entryId2,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the asset links where entryId2 = ?.
|
AssetLink |
findByPrimaryKey(long linkId)
Returns the asset link with the primary key or throws a
NoSuchLinkException if it could not be found. |
AssetLink |
remove(long linkId)
Removes the asset link with the primary key from the database.
|
void |
removeAll()
Removes all the asset links from the database.
|
AssetLink |
removeByE_E_T(long entryId1,
long entryId2,
int type)
Removes the asset link where entryId1 = ? and entryId2 = ? and type = ? from the database.
|
void |
removeByE_E(long entryId1,
long entryId2)
Removes all the asset links where entryId1 = ? and entryId2 = ? from the database.
|
void |
removeByE1_T(long entryId1,
int type)
Removes all the asset links where entryId1 = ? and type = ? from the database.
|
void |
removeByE1(long entryId1)
Removes all the asset links where entryId1 = ? from the database.
|
void |
removeByE2_T(long entryId2,
int type)
Removes all the asset links where entryId2 = ? and type = ? from the database.
|
void |
removeByE2(long entryId2)
Removes all the asset links where entryId2 = ? from the database.
|
AssetLink |
updateImpl(AssetLink assetLink) |
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, update, updatejava.util.List<AssetLink> findByE1(long entryId1) throws SystemException
entryId1 - the entry id1SystemException - if a system exception occurredjava.util.List<AssetLink> findByE1(long entryId1, 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 AssetLinkModelImpl. 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.
entryId1 - the entry id1start - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)SystemException - if a system exception occurredjava.util.List<AssetLink> findByE1(long entryId1, 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 AssetLinkModelImpl. 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.
entryId1 - the entry id1start - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredAssetLink findByE1_First(long entryId1, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId1 - the entry id1orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE1_First(long entryId1, OrderByComparator orderByComparator) throws SystemException
entryId1 - the entry id1orderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink findByE1_Last(long entryId1, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId1 - the entry id1orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE1_Last(long entryId1, OrderByComparator orderByComparator) throws SystemException
entryId1 - the entry id1orderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink[] findByE1_PrevAndNext(long linkId, long entryId1, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
linkId - the primary key of the current asset linkentryId1 - the entry id1orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredvoid removeByE1(long entryId1)
throws SystemException
entryId1 - the entry id1SystemException - if a system exception occurredint countByE1(long entryId1)
throws SystemException
entryId1 - the entry id1SystemException - if a system exception occurredjava.util.List<AssetLink> findByE2(long entryId2) throws SystemException
entryId2 - the entry id2SystemException - if a system exception occurredjava.util.List<AssetLink> findByE2(long entryId2, 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 AssetLinkModelImpl. 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.
entryId2 - the entry id2start - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)SystemException - if a system exception occurredjava.util.List<AssetLink> findByE2(long entryId2, 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 AssetLinkModelImpl. 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.
entryId2 - the entry id2start - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredAssetLink findByE2_First(long entryId2, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE2_First(long entryId2, OrderByComparator orderByComparator) throws SystemException
entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink findByE2_Last(long entryId2, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE2_Last(long entryId2, OrderByComparator orderByComparator) throws SystemException
entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink[] findByE2_PrevAndNext(long linkId, long entryId2, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
linkId - the primary key of the current asset linkentryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredvoid removeByE2(long entryId2)
throws SystemException
entryId2 - the entry id2SystemException - if a system exception occurredint countByE2(long entryId2)
throws SystemException
entryId2 - the entry id2SystemException - if a system exception occurredjava.util.List<AssetLink> findByE_E(long entryId1, long entryId2) throws SystemException
entryId1 - the entry id1entryId2 - the entry id2SystemException - if a system exception occurredjava.util.List<AssetLink> findByE_E(long entryId1, long entryId2, 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 AssetLinkModelImpl. 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.
entryId1 - the entry id1entryId2 - the entry id2start - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)SystemException - if a system exception occurredjava.util.List<AssetLink> findByE_E(long entryId1, long entryId2, 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 AssetLinkModelImpl. 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.
entryId1 - the entry id1entryId2 - the entry id2start - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredAssetLink findByE_E_First(long entryId1, long entryId2, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId1 - the entry id1entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE_E_First(long entryId1, long entryId2, OrderByComparator orderByComparator) throws SystemException
entryId1 - the entry id1entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink findByE_E_Last(long entryId1, long entryId2, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId1 - the entry id1entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE_E_Last(long entryId1, long entryId2, OrderByComparator orderByComparator) throws SystemException
entryId1 - the entry id1entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink[] findByE_E_PrevAndNext(long linkId, long entryId1, long entryId2, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
linkId - the primary key of the current asset linkentryId1 - the entry id1entryId2 - the entry id2orderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredvoid removeByE_E(long entryId1,
long entryId2)
throws SystemException
entryId1 - the entry id1entryId2 - the entry id2SystemException - if a system exception occurredint countByE_E(long entryId1,
long entryId2)
throws SystemException
entryId1 - the entry id1entryId2 - the entry id2SystemException - if a system exception occurredjava.util.List<AssetLink> findByE1_T(long entryId1, int type) throws SystemException
entryId1 - the entry id1type - the typeSystemException - if a system exception occurredjava.util.List<AssetLink> findByE1_T(long entryId1, int type, 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 AssetLinkModelImpl. 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.
entryId1 - the entry id1type - the typestart - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)SystemException - if a system exception occurredjava.util.List<AssetLink> findByE1_T(long entryId1, int type, 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 AssetLinkModelImpl. 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.
entryId1 - the entry id1type - the typestart - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredAssetLink findByE1_T_First(long entryId1, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId1 - the entry id1type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE1_T_First(long entryId1, int type, OrderByComparator orderByComparator) throws SystemException
entryId1 - the entry id1type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink findByE1_T_Last(long entryId1, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId1 - the entry id1type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE1_T_Last(long entryId1, int type, OrderByComparator orderByComparator) throws SystemException
entryId1 - the entry id1type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink[] findByE1_T_PrevAndNext(long linkId, long entryId1, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
linkId - the primary key of the current asset linkentryId1 - the entry id1type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredvoid removeByE1_T(long entryId1,
int type)
throws SystemException
entryId1 - the entry id1type - the typeSystemException - if a system exception occurredint countByE1_T(long entryId1,
int type)
throws SystemException
entryId1 - the entry id1type - the typeSystemException - if a system exception occurredjava.util.List<AssetLink> findByE2_T(long entryId2, int type) throws SystemException
entryId2 - the entry id2type - the typeSystemException - if a system exception occurredjava.util.List<AssetLink> findByE2_T(long entryId2, int type, 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 AssetLinkModelImpl. 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.
entryId2 - the entry id2type - the typestart - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)SystemException - if a system exception occurredjava.util.List<AssetLink> findByE2_T(long entryId2, int type, 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 AssetLinkModelImpl. 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.
entryId2 - the entry id2type - the typestart - the lower bound of the range of asset linksend - the upper bound of the range of asset links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredAssetLink findByE2_T_First(long entryId2, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId2 - the entry id2type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE2_T_First(long entryId2, int type, OrderByComparator orderByComparator) throws SystemException
entryId2 - the entry id2type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink findByE2_T_Last(long entryId2, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
entryId2 - the entry id2type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE2_T_Last(long entryId2, int type, OrderByComparator orderByComparator) throws SystemException
entryId2 - the entry id2type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink[] findByE2_T_PrevAndNext(long linkId, long entryId2, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchLinkException
linkId - the primary key of the current asset linkentryId2 - the entry id2type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredvoid removeByE2_T(long entryId2,
int type)
throws SystemException
entryId2 - the entry id2type - the typeSystemException - if a system exception occurredint countByE2_T(long entryId2,
int type)
throws SystemException
entryId2 - the entry id2type - the typeSystemException - if a system exception occurredAssetLink findByE_E_T(long entryId1, long entryId2, int type) throws SystemException, NoSuchLinkException
NoSuchLinkException if it could not be found.entryId1 - the entry id1entryId2 - the entry id2type - the typeNoSuchLinkException - if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE_E_T(long entryId1, long entryId2, int type) throws SystemException
null if it could not be found. Uses the finder cache.entryId1 - the entry id1entryId2 - the entry id2type - the typenull if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink fetchByE_E_T(long entryId1, long entryId2, int type, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.entryId1 - the entry id1entryId2 - the entry id2type - the typeretrieveFromCache - whether to use the finder cachenull if a matching asset link could not be foundSystemException - if a system exception occurredAssetLink removeByE_E_T(long entryId1, long entryId2, int type) throws SystemException, NoSuchLinkException
entryId1 - the entry id1entryId2 - the entry id2type - the typeSystemException - if a system exception occurredNoSuchLinkExceptionint countByE_E_T(long entryId1,
long entryId2,
int type)
throws SystemException
entryId1 - the entry id1entryId2 - the entry id2type - the typeSystemException - if a system exception occurredvoid cacheResult(AssetLink assetLink)
assetLink - the asset linkvoid cacheResult(java.util.List<AssetLink> assetLinks)
assetLinks - the asset linksAssetLink create(long linkId)
linkId - the primary key for the new asset linkAssetLink remove(long linkId) throws SystemException, NoSuchLinkException
linkId - the primary key of the asset linkNoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredAssetLink updateImpl(AssetLink assetLink) throws SystemException
SystemExceptionAssetLink findByPrimaryKey(long linkId) throws SystemException, NoSuchLinkException
NoSuchLinkException if it could not be found.linkId - the primary key of the asset linkNoSuchLinkException - if a asset link with the primary key could not be foundSystemException - if a system exception occurredAssetLink fetchByPrimaryKey(long linkId) throws SystemException
null if it could not be found.linkId - the primary key of the asset linknull if a asset link with the primary key could not be foundSystemException - if a system exception occurredjava.util.List<AssetLink> findAll() throws SystemException
SystemException - if a system exception occurredjava.util.List<AssetLink> 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 AssetLinkModelImpl. 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 asset linksend - the upper bound of the range of asset links (not inclusive)SystemException - if a system exception occurredjava.util.List<AssetLink> 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 AssetLinkModelImpl. 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 asset linksend - the upper bound of the range of asset links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredvoid removeAll()
throws SystemException
SystemException - if a system exception occurredint countAll()
throws SystemException
SystemException - if a system exception occurred