public class AssetLinkLocalServiceWrapper extends Object implements AssetLinkLocalService, ServiceWrapper<AssetLinkLocalService>
AssetLinkLocalService
.AssetLinkLocalService
Constructor and Description |
---|
AssetLinkLocalServiceWrapper(AssetLinkLocalService assetLinkLocalService) |
Modifier and Type | Method and Description |
---|---|
AssetLink |
addAssetLink(AssetLink assetLink)
Adds the asset link to the database.
|
AssetLink |
addLink(long userId,
long entryId1,
long entryId2,
int type,
int weight)
Adds a new asset link.
|
AssetLink |
createAssetLink(long linkId)
Creates a new asset link with the primary key.
|
PersistedModel |
createPersistedModel(Serializable primaryKeyObj) |
AssetLink |
deleteAssetLink(AssetLink assetLink)
Deletes the asset link from the database.
|
AssetLink |
deleteAssetLink(long linkId)
Deletes the asset link with the primary key from the database.
|
void |
deleteGroupLinks(long groupId) |
void |
deleteLink(AssetLink link)
Deletes the asset link.
|
void |
deleteLink(long linkId)
Deletes the asset link.
|
void |
deleteLinks(long entryId)
Deletes all links associated with the asset entry.
|
void |
deleteLinks(long entryId1,
long entryId2)
Delete all links that associate the two asset entries.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
AssetLink |
fetchAssetLink(long linkId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
AssetLink |
getAssetLink(long linkId)
Returns the asset link with the primary key.
|
List<AssetLink> |
getAssetLinks(int start,
int end)
Returns a range of all the asset links.
|
int |
getAssetLinksCount()
Returns the number of asset links.
|
CTPersistence<AssetLink> |
getCTPersistence() |
List<AssetLink> |
getDirectLinks(long entryId)
Returns all the asset links whose first entry ID is the given entry ID.
|
List<AssetLink> |
getDirectLinks(long entryId,
boolean excludeInvisibleLinks) |
List<AssetLink> |
getDirectLinks(long entryId,
int typeId)
Returns all the asset links of the given link type whose first entry ID
is the given entry ID.
|
List<AssetLink> |
getDirectLinks(long entryId,
int typeId,
boolean excludeInvisibleLinks) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
List<AssetLink> |
getLinks(long entryId)
Returns all the asset links whose first or second entry ID is the given
entry ID.
|
List<AssetLink> |
getLinks(long groupId,
Date startDate,
Date endDate,
int start,
int end) |
List<AssetLink> |
getLinks(long entryId,
int typeId)
Returns all the asset links of the given link type whose first or second
entry ID is the given entry ID.
|
List<AssetLink> |
getLinks(long classNameId,
long classPK)
Returns all the asset links of an AssetEntry.
|
Class<AssetLink> |
getModelClass() |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
List<AssetLink> |
getReverseLinks(long entryId,
int typeId)
Returns all the asset links of the given link type whose second entry ID
is the given entry ID.
|
AssetLinkLocalService |
getWrappedService() |
void |
setWrappedService(AssetLinkLocalService assetLinkLocalService) |
AssetLink |
updateAssetLink(AssetLink assetLink)
Updates the asset link in the database or adds it if it does not yet exist.
|
AssetLink |
updateLink(long userId,
long entryId1,
long entryId2,
int typeId,
int weight) |
void |
updateLinks(long userId,
long entryId,
long[] linkEntryIds,
int typeId)
Updates all links of the asset entry, replacing them with links
associating the asset entry with the asset entries of the given link
entry IDs.
|
<R,E extends Throwable> |
updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<AssetLink>,R,E> updateUnsafeFunction) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getBasePersistence
public AssetLinkLocalServiceWrapper(AssetLinkLocalService assetLinkLocalService)
public AssetLink addAssetLink(AssetLink assetLink)
Important: Inspect AssetLinkLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
addAssetLink
in interface AssetLinkLocalService
assetLink
- the asset linkpublic AssetLink addLink(long userId, long entryId1, long entryId2, int type, int weight) throws PortalException
addLink
in interface AssetLinkLocalService
userId
- the primary key of the link's creatorentryId1
- the primary key of the first asset entryentryId2
- the primary key of the second asset entrytype
- the link type. Acceptable values include AssetLinkConstants#TYPE_RELATED
which is a bidirectional
relationship and AssetLinkConstants#TYPE_CHILD
which is a
unidirectional relationship. For more information see AssetLinkConstants
weight
- the weight of the relationship, allowing precedence
ordering of linksPortalException
public AssetLink createAssetLink(long linkId)
createAssetLink
in interface AssetLinkLocalService
linkId
- the primary key for the new asset linkpublic PersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
createPersistedModel
in interface AssetLinkLocalService
createPersistedModel
in interface PersistedModelLocalService
PortalException
public AssetLink deleteAssetLink(AssetLink assetLink)
Important: Inspect AssetLinkLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteAssetLink
in interface AssetLinkLocalService
assetLink
- the asset linkpublic AssetLink deleteAssetLink(long linkId) throws PortalException
Important: Inspect AssetLinkLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteAssetLink
in interface AssetLinkLocalService
linkId
- the primary key of the asset linkPortalException
- if a asset link with the primary key could not be foundpublic void deleteGroupLinks(long groupId)
deleteGroupLinks
in interface AssetLinkLocalService
public void deleteLink(AssetLink link)
deleteLink
in interface AssetLinkLocalService
link
- the asset linkpublic void deleteLink(long linkId) throws PortalException
deleteLink
in interface AssetLinkLocalService
linkId
- the primary key of the asset linkPortalException
public void deleteLinks(long entryId)
deleteLinks
in interface AssetLinkLocalService
entryId
- the primary key of the asset entrypublic void deleteLinks(long entryId1, long entryId2)
deleteLinks
in interface AssetLinkLocalService
entryId1
- the primary key of the first asset entryentryId2
- the primary key of the second asset entrypublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface AssetLinkLocalService
deletePersistedModel
in interface PersistedModelLocalService
PortalException
public <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery
in interface AssetLinkLocalService
public DynamicQuery dynamicQuery()
dynamicQuery
in interface AssetLinkLocalService
public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface AssetLinkLocalService
dynamicQuery
- the dynamic querypublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portlet.asset.model.impl.AssetLinkModelImpl
.
dynamicQuery
in interface AssetLinkLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portlet.asset.model.impl.AssetLinkModelImpl
.
dynamicQuery
in interface AssetLinkLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount
in interface AssetLinkLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface AssetLinkLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic AssetLink fetchAssetLink(long linkId)
fetchAssetLink
in interface AssetLinkLocalService
public ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface AssetLinkLocalService
public AssetLink getAssetLink(long linkId) throws PortalException
getAssetLink
in interface AssetLinkLocalService
linkId
- the primary key of the asset linkPortalException
- if a asset link with the primary key could not be foundpublic List<AssetLink> getAssetLinks(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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portlet.asset.model.impl.AssetLinkModelImpl
.
getAssetLinks
in interface AssetLinkLocalService
start
- the lower bound of the range of asset linksend
- the upper bound of the range of asset links (not inclusive)public int getAssetLinksCount()
getAssetLinksCount
in interface AssetLinkLocalService
public List<AssetLink> getDirectLinks(long entryId)
getDirectLinks
in interface AssetLinkLocalService
entryId
- the primary key of the asset entrypublic List<AssetLink> getDirectLinks(long entryId, boolean excludeInvisibleLinks)
getDirectLinks
in interface AssetLinkLocalService
public List<AssetLink> getDirectLinks(long entryId, int typeId)
getDirectLinks
in interface AssetLinkLocalService
entryId
- the primary key of the asset entrytypeId
- the link type. Acceptable values include AssetLinkConstants#TYPE_RELATED
which is a bidirectional
relationship and AssetLinkConstants#TYPE_CHILD
which is a
unidirectional relationship. For more information see AssetLinkConstants
public List<AssetLink> getDirectLinks(long entryId, int typeId, boolean excludeInvisibleLinks)
getDirectLinks
in interface AssetLinkLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface AssetLinkLocalService
public List<AssetLink> getLinks(long entryId)
getLinks
in interface AssetLinkLocalService
entryId
- the primary key of the asset entrypublic List<AssetLink> getLinks(long groupId, Date startDate, Date endDate, int start, int end)
getLinks
in interface AssetLinkLocalService
public List<AssetLink> getLinks(long entryId, int typeId)
getLinks
in interface AssetLinkLocalService
entryId
- the primary key of the asset entrytypeId
- the link type. Acceptable values include AssetLinkConstants#TYPE_RELATED
which is a bidirectional
relationship and AssetLinkConstants#TYPE_CHILD
which is a
unidirectional relationship. For more information see AssetLinkConstants
public List<AssetLink> getLinks(long classNameId, long classPK)
getLinks
in interface AssetLinkLocalService
classNameId
- AssetEntry's classNameIdclassPK
- AssetEntry's classPKpublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface AssetLinkLocalService
public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface AssetLinkLocalService
getPersistedModel
in interface PersistedModelLocalService
PortalException
public List<AssetLink> getReverseLinks(long entryId, int typeId)
getReverseLinks
in interface AssetLinkLocalService
entryId
- the primary key of the asset entrytypeId
- the link type. Acceptable values include AssetLinkConstants#TYPE_RELATED
which is a bidirectional
relationship and AssetLinkConstants#TYPE_CHILD
which is a
unidirectional relationship. For more information see AssetLinkConstants
public AssetLink updateAssetLink(AssetLink assetLink)
Important: Inspect AssetLinkLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
updateAssetLink
in interface AssetLinkLocalService
assetLink
- the asset linkpublic AssetLink updateLink(long userId, long entryId1, long entryId2, int typeId, int weight) throws PortalException
updateLink
in interface AssetLinkLocalService
PortalException
public void updateLinks(long userId, long entryId, long[] linkEntryIds, int typeId) throws PortalException
If no link exists with a given link entry ID, a new link is created associating the current asset entry with the asset entry of that link entry ID. An existing link is deleted if either of its entry IDs is not contained in the given link entry IDs.
updateLinks
in interface AssetLinkLocalService
userId
- the primary key of the user updating the linksentryId
- the primary key of the asset entry to be managedlinkEntryIds
- the primary keys of the asset entries to be linked
with the asset entry to be managedtypeId
- the type of the asset links to be created. Acceptable
values include AssetLinkConstants#TYPE_RELATED
which is a
bidirectional relationship and AssetLinkConstants#TYPE_CHILD
which is a unidirectional
relationship. For more information see AssetLinkConstants
PortalException
public CTPersistence<AssetLink> getCTPersistence()
getCTPersistence
in interface AssetLinkLocalService
getCTPersistence
in interface CTService<AssetLink>
public Class<AssetLink> getModelClass()
getModelClass
in interface AssetLinkLocalService
getModelClass
in interface CTService<AssetLink>
public <R,E extends Throwable> R updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<AssetLink>,R,E> updateUnsafeFunction) throws E extends Throwable
updateWithUnsafeFunction
in interface AssetLinkLocalService
updateWithUnsafeFunction
in interface CTService<AssetLink>
E extends Throwable
public AssetLinkLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<AssetLinkLocalService>
public void setWrappedService(AssetLinkLocalService assetLinkLocalService)
setWrappedService
in interface ServiceWrapper<AssetLinkLocalService>