Liferay 7.0-ce-b4

com.liferay.portlet.asset.service
Class AssetLinkLocalServiceUtil

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetLinkLocalServiceUtil

@ProviderType
public class AssetLinkLocalServiceUtil
extends Object

Provides the local service utility for AssetLink. This utility wraps com.liferay.portlet.asset.service.impl.AssetLinkLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

See Also:
AssetLinkLocalService, com.liferay.portlet.asset.service.base.AssetLinkLocalServiceBaseImpl, com.liferay.portlet.asset.service.impl.AssetLinkLocalServiceImpl

Constructor Summary
AssetLinkLocalServiceUtil()
           
 
Method Summary
static AssetLink addAssetLink(AssetLink assetLink)
          Adds the asset link to the database.
static AssetLink addLink(long userId, long entryId1, long entryId2, int type, int weight)
          Adds a new asset link.
static AssetLink createAssetLink(long linkId)
          Creates a new asset link with the primary key.
static AssetLink deleteAssetLink(AssetLink assetLink)
          Deletes the asset link from the database.
static AssetLink deleteAssetLink(long linkId)
          Deletes the asset link with the primary key from the database.
static void deleteGroupLinks(long groupId)
           
static void deleteLink(AssetLink link)
          Deletes the asset link.
static void deleteLink(long linkId)
          Deletes the asset link.
static void deleteLinks(long entryId)
          Deletes all links associated with the asset entry.
static void deleteLinks(long entryId1, long entryId2)
          Delete all links that associate the two asset entries.
static PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
static DynamicQuery dynamicQuery()
           
static
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
static
<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.
static
<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.
static long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows matching the dynamic query.
static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows matching the dynamic query.
static AssetLink fetchAssetLink(long linkId)
           
static ActionableDynamicQuery getActionableDynamicQuery()
           
static AssetLink getAssetLink(long linkId)
          Returns the asset link with the primary key.
static List<AssetLink> getAssetLinks(int start, int end)
          Returns a range of all the asset links.
static int getAssetLinksCount()
          Returns the number of asset links.
static List<AssetLink> getDirectLinks(long entryId)
          Returns all the asset links whose first entry ID is the given entry ID.
static 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.
static ExportActionableDynamicQuery getExportActionbleDynamicQuery(PortletDataContext portletDataContext)
           
static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
           
static List<AssetLink> getLinks(long entryId)
          Returns all the asset links whose first or second entry ID is the given entry ID.
static 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.
static String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
static PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
static 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.
static AssetLinkLocalService getService()
           
static AssetLink updateAssetLink(AssetLink assetLink)
          Updates the asset link in the database or adds it if it does not yet exist.
static AssetLink updateLink(long userId, long entryId1, long entryId2, int typeId, int weight)
           
static 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetLinkLocalServiceUtil

public AssetLinkLocalServiceUtil()
Method Detail

addAssetLink

public static AssetLink addAssetLink(AssetLink assetLink)
Adds the asset link to the database. Also notifies the appropriate model listeners.

Parameters:
assetLink - the asset link
Returns:
the asset link that was added

addLink

public static AssetLink addLink(long userId,
                                long entryId1,
                                long entryId2,
                                int type,
                                int weight)
                         throws PortalException
Adds a new asset link.

Parameters:
userId - the primary key of the link's creator
entryId1 - the primary key of the first asset entry
entryId2 - the primary key of the second asset entry
type - 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 links
Returns:
the asset link
Throws:
PortalException

createAssetLink

public static AssetLink createAssetLink(long linkId)
Creates a new asset link with the primary key. Does not add the asset link to the database.

Parameters:
linkId - the primary key for the new asset link
Returns:
the new asset link

deleteAssetLink

public static AssetLink deleteAssetLink(AssetLink assetLink)
Deletes the asset link from the database. Also notifies the appropriate model listeners.

Parameters:
assetLink - the asset link
Returns:
the asset link that was removed

deleteAssetLink

public static AssetLink deleteAssetLink(long linkId)
                                 throws PortalException
Deletes the asset link with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
linkId - the primary key of the asset link
Returns:
the asset link that was removed
Throws:
PortalException - if a asset link with the primary key could not be found

deleteGroupLinks

public static void deleteGroupLinks(long groupId)

deleteLink

public static void deleteLink(AssetLink link)
Deletes the asset link.

Parameters:
link - the asset link

deleteLink

public static void deleteLink(long linkId)
                       throws PortalException
Deletes the asset link.

Parameters:
linkId - the primary key of the asset link
Throws:
PortalException

deleteLinks

public static void deleteLinks(long entryId)
Deletes all links associated with the asset entry.

Parameters:
entryId - the primary key of the asset entry

deleteLinks

public static void deleteLinks(long entryId1,
                               long entryId2)
Delete all links that associate the two asset entries.

Parameters:
entryId1 - the primary key of the first asset entry
entryId2 - the primary key of the second asset entry

deletePersistedModel

public static PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                           throws PortalException
Throws:
PortalException

dynamicQuery

public static DynamicQuery dynamicQuery()

dynamicQuery

public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows

dynamicQuery

public static <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.

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 com.liferay.portlet.asset.model.impl.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.

Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows

dynamicQuery

public static <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.

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 com.liferay.portlet.asset.model.impl.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.

Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery,
                                     Projection projection)
Returns the number of rows matching the dynamic query.

Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchAssetLink

public static AssetLink fetchAssetLink(long linkId)

getActionableDynamicQuery

public static ActionableDynamicQuery getActionableDynamicQuery()

getAssetLink

public static AssetLink getAssetLink(long linkId)
                              throws PortalException
Returns the asset link with the primary key.

Parameters:
linkId - the primary key of the asset link
Returns:
the asset link
Throws:
PortalException - if a asset link with the primary key could not be found

getAssetLinks

public static List<AssetLink> getAssetLinks(int start,
                                            int end)
Returns a range of all the asset links.

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 com.liferay.portlet.asset.model.impl.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.

Parameters:
start - the lower bound of the range of asset links
end - the upper bound of the range of asset links (not inclusive)
Returns:
the range of asset links

getAssetLinksCount

public static int getAssetLinksCount()
Returns the number of asset links.

Returns:
the number of asset links

getDirectLinks

public static List<AssetLink> getDirectLinks(long entryId)
Returns all the asset links whose first entry ID is the given entry ID.

Parameters:
entryId - the primary key of the asset entry
Returns:
the asset links whose first entry ID is the given entry ID

getDirectLinks

public static 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.

Parameters:
entryId - the primary key of the asset entry
typeId - 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
Returns:
the asset links of the given link type whose first entry ID is the given entry ID

getExportActionbleDynamicQuery

public static ExportActionableDynamicQuery getExportActionbleDynamicQuery(PortletDataContext portletDataContext)

getIndexableActionableDynamicQuery

public static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()

getLinks

public static List<AssetLink> getLinks(long entryId)
Returns all the asset links whose first or second entry ID is the given entry ID.

Parameters:
entryId - the primary key of the asset entry
Returns:
the asset links whose first or second entry ID is the given entry ID

getLinks

public static 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.

Parameters:
entryId - the primary key of the asset entry
typeId - 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
Returns:
the asset links of the given link type whose first or second entry ID is the given entry ID

getOSGiServiceIdentifier

public static String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

getPersistedModel

public static PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                        throws PortalException
Throws:
PortalException

getReverseLinks

public static 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.

Parameters:
entryId - the primary key of the asset entry
typeId - 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
Returns:
the asset links of the given link type whose second entry ID is the given entry ID

updateAssetLink

public static AssetLink updateAssetLink(AssetLink assetLink)
Updates the asset link in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
assetLink - the asset link
Returns:
the asset link that was updated

updateLink

public static AssetLink updateLink(long userId,
                                   long entryId1,
                                   long entryId2,
                                   int typeId,
                                   int weight)
                            throws PortalException
Throws:
PortalException

updateLinks

public static void updateLinks(long userId,
                               long entryId,
                               long[] linkEntryIds,
                               int typeId)
                        throws PortalException
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.

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.

Parameters:
userId - the primary key of the user updating the links
entryId - the primary key of the asset entry to be managed
linkEntryIds - the primary keys of the asset entries to be linked with the asset entry to be managed
typeId - 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
Throws:
PortalException

getService

public static AssetLinkLocalService getService()

Liferay 7.0-ce-b4