Liferay 6.0.5

com.liferay.portlet.asset.service
Class AssetEntryLocalServiceUtil

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

public class AssetEntryLocalServiceUtil
extends Object

The utility for the asset entry local service. This utility wraps AssetEntryLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server.

Never modify this class directly. Add custom service methods to AssetEntryLocalServiceImpl and rerun ServiceBuilder to regenerate this class.

This is a local service. 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:
AssetEntryLocalService, AssetEntryLocalServiceBaseImpl, AssetEntryLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
AssetEntryLocalServiceUtil()
           
 
Method Summary
static AssetEntry addAssetEntry(AssetEntry assetEntry)
          Adds the asset entry to the database.
static AssetEntry createAssetEntry(long entryId)
          Creates a new asset entry with the primary key.
static void deleteAssetEntry(AssetEntry assetEntry)
          Deletes the asset entry from the database.
static void deleteAssetEntry(long entryId)
          Deletes the asset entry with the primary key from the database.
static void deleteEntry(AssetEntry entry)
           
static void deleteEntry(long entryId)
           
static void deleteEntry(String className, long classPK)
           
static List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
static List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
static List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
static long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
static List<AssetEntry> getAncestorEntries(long entryId)
           
static List<AssetEntry> getAssetEntries(int start, int end)
          Gets a range of all the asset entries.
static int getAssetEntriesCount()
          Gets the number of asset entries.
static AssetEntry getAssetEntry(long entryId)
          Gets the asset entry with the primary key.
static List<AssetEntry> getChildEntries(long entryId)
           
static List<AssetEntry> getCompanyEntries(long companyId, int start, int end)
           
static int getCompanyEntriesCount(long companyId)
           
static AssetEntryDisplay[] getCompanyEntryDisplays(long companyId, int start, int end, String languageId)
           
static List<AssetEntry> getEntries(AssetEntryQuery entryQuery)
           
static int getEntriesCount(AssetEntryQuery entryQuery)
           
static AssetEntry getEntry(long entryId)
           
static AssetEntry getEntry(long groupId, String classUuid)
           
static AssetEntry getEntry(String className, long classPK)
           
static AssetEntry getNextEntry(long entryId)
           
static AssetEntry getParentEntry(long entryId)
           
static AssetEntry getPreviousEntry(long entryId)
           
static AssetEntryLocalService getService()
           
static List<AssetEntry> getTopViewedEntries(String[] className, boolean asc, int start, int end)
           
static List<AssetEntry> getTopViewedEntries(String className, boolean asc, int start, int end)
           
static void incrementViewCounter(long userId, String className, long classPK)
           
static void incrementViewCounter(long userId, String className, long classPK, int increment)
           
static Hits search(long companyId, long[] groupIds, String portletId, String userName, String title, String description, String assetCategoryIds, String assetTagNames, boolean andSearch, int start, int end)
           
static Hits search(long companyId, String portletId, String keywords, int start, int end)
           
static AssetEntryDisplay[] searchEntryDisplays(long companyId, String portletId, String keywords, String languageId, int start, int end)
           
static int searchEntryDisplaysCount(long companyId, String portletId, String keywords, String languageId)
           
 void setService(AssetEntryLocalService service)
           
static AssetEntry updateAssetEntry(AssetEntry assetEntry)
          Updates the asset entry in the database.
static AssetEntry updateAssetEntry(AssetEntry assetEntry, boolean merge)
          Updates the asset entry in the database.
static AssetEntry updateEntry(long userId, long groupId, String className, long classPK, long[] categoryIds, String[] tagNames)
           
static AssetEntry updateEntry(long userId, long groupId, String className, long classPK, String classUuid, long[] categoryIds, String[] tagNames, boolean visible, Date startDate, Date endDate, Date publishDate, Date expirationDate, String mimeType, String title, String description, String summary, String url, int height, int width, Integer priority, boolean sync)
           
static AssetEntry updateVisible(String className, long classPK, boolean visible)
           
static void validate(String className, long[] categoryIds, String[] tagNames)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetEntryLocalServiceUtil

public AssetEntryLocalServiceUtil()
Method Detail

addAssetEntry

public static AssetEntry addAssetEntry(AssetEntry assetEntry)
                                throws SystemException
Adds the asset entry to the database. Also notifies the appropriate model listeners.

Parameters:
assetEntry - the asset entry to add
Returns:
the asset entry that was added
Throws:
SystemException - if a system exception occurred

createAssetEntry

public static AssetEntry createAssetEntry(long entryId)
Creates a new asset entry with the primary key. Does not add the asset entry to the database.

Parameters:
entryId - the primary key for the new asset entry
Returns:
the new asset entry

deleteAssetEntry

public static void deleteAssetEntry(long entryId)
                             throws PortalException,
                                    SystemException
Deletes the asset entry with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
entryId - the primary key of the asset entry to delete
Throws:
PortalException - if a asset entry with the primary key could not be found
SystemException - if a system exception occurred

deleteAssetEntry

public static void deleteAssetEntry(AssetEntry assetEntry)
                             throws SystemException
Deletes the asset entry from the database. Also notifies the appropriate model listeners.

Parameters:
assetEntry - the asset entry to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public static List dynamicQuery(DynamicQuery dynamicQuery)
                         throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public static List dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end)
                         throws SystemException
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.

Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public static List dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end,
                                OrderByComparator orderByComparator)
                         throws SystemException
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.

Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery)
                              throws SystemException
Counts the number of rows that match the dynamic query.

Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getAssetEntry

public static AssetEntry getAssetEntry(long entryId)
                                throws PortalException,
                                       SystemException
Gets the asset entry with the primary key.

Parameters:
entryId - the primary key of the asset entry to get
Returns:
the asset entry
Throws:
PortalException - if a asset entry with the primary key could not be found
SystemException - if a system exception occurred

getAssetEntries

public static List<AssetEntry> getAssetEntries(int start,
                                               int end)
                                        throws SystemException
Gets a range of all the asset entries.

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.

Parameters:
start - the lower bound of the range of asset entries to return
end - the upper bound of the range of asset entries to return (not inclusive)
Returns:
the range of asset entries
Throws:
SystemException - if a system exception occurred

getAssetEntriesCount

public static int getAssetEntriesCount()
                                throws SystemException
Gets the number of asset entries.

Returns:
the number of asset entries
Throws:
SystemException - if a system exception occurred

updateAssetEntry

public static AssetEntry updateAssetEntry(AssetEntry assetEntry)
                                   throws SystemException
Updates the asset entry in the database. Also notifies the appropriate model listeners.

Parameters:
assetEntry - the asset entry to update
Returns:
the asset entry that was updated
Throws:
SystemException - if a system exception occurred

updateAssetEntry

public static AssetEntry updateAssetEntry(AssetEntry assetEntry,
                                          boolean merge)
                                   throws SystemException
Updates the asset entry in the database. Also notifies the appropriate model listeners.

Parameters:
assetEntry - the asset entry to update
merge - whether to merge the asset entry with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the asset entry that was updated
Throws:
SystemException - if a system exception occurred

deleteEntry

public static void deleteEntry(AssetEntry entry)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

deleteEntry

public static void deleteEntry(long entryId)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

deleteEntry

public static void deleteEntry(String className,
                               long classPK)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

getAncestorEntries

public static List<AssetEntry> getAncestorEntries(long entryId)
                                           throws PortalException,
                                                  SystemException
Throws:
PortalException
SystemException

getChildEntries

public static List<AssetEntry> getChildEntries(long entryId)
                                        throws PortalException,
                                               SystemException
Throws:
PortalException
SystemException

getCompanyEntries

public static List<AssetEntry> getCompanyEntries(long companyId,
                                                 int start,
                                                 int end)
                                          throws SystemException
Throws:
SystemException

getCompanyEntriesCount

public static int getCompanyEntriesCount(long companyId)
                                  throws SystemException
Throws:
SystemException

getCompanyEntryDisplays

public static AssetEntryDisplay[] getCompanyEntryDisplays(long companyId,
                                                          int start,
                                                          int end,
                                                          String languageId)
                                                   throws SystemException
Throws:
SystemException

getEntries

public static List<AssetEntry> getEntries(AssetEntryQuery entryQuery)
                                   throws SystemException
Throws:
SystemException

getEntriesCount

public static int getEntriesCount(AssetEntryQuery entryQuery)
                           throws SystemException
Throws:
SystemException

getEntry

public static AssetEntry getEntry(long entryId)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

getEntry

public static AssetEntry getEntry(long groupId,
                                  String classUuid)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

getEntry

public static AssetEntry getEntry(String className,
                                  long classPK)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

getNextEntry

public static AssetEntry getNextEntry(long entryId)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

getParentEntry

public static AssetEntry getParentEntry(long entryId)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

getPreviousEntry

public static AssetEntry getPreviousEntry(long entryId)
                                   throws PortalException,
                                          SystemException
Throws:
PortalException
SystemException

getTopViewedEntries

public static List<AssetEntry> getTopViewedEntries(String className,
                                                   boolean asc,
                                                   int start,
                                                   int end)
                                            throws SystemException
Throws:
SystemException

getTopViewedEntries

public static List<AssetEntry> getTopViewedEntries(String[] className,
                                                   boolean asc,
                                                   int start,
                                                   int end)
                                            throws SystemException
Throws:
SystemException

incrementViewCounter

public static void incrementViewCounter(long userId,
                                        String className,
                                        long classPK)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

incrementViewCounter

public static void incrementViewCounter(long userId,
                                        String className,
                                        long classPK,
                                        int increment)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

search

public static Hits search(long companyId,
                          String portletId,
                          String keywords,
                          int start,
                          int end)
                   throws SystemException
Throws:
SystemException

search

public static Hits search(long companyId,
                          long[] groupIds,
                          String portletId,
                          String userName,
                          String title,
                          String description,
                          String assetCategoryIds,
                          String assetTagNames,
                          boolean andSearch,
                          int start,
                          int end)
                   throws SystemException
Throws:
SystemException

searchEntryDisplays

public static AssetEntryDisplay[] searchEntryDisplays(long companyId,
                                                      String portletId,
                                                      String keywords,
                                                      String languageId,
                                                      int start,
                                                      int end)
                                               throws SystemException
Throws:
SystemException

searchEntryDisplaysCount

public static int searchEntryDisplaysCount(long companyId,
                                           String portletId,
                                           String keywords,
                                           String languageId)
                                    throws SystemException
Throws:
SystemException

updateEntry

public static AssetEntry updateEntry(long userId,
                                     long groupId,
                                     String className,
                                     long classPK,
                                     long[] categoryIds,
                                     String[] tagNames)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

updateEntry

public static AssetEntry updateEntry(long userId,
                                     long groupId,
                                     String className,
                                     long classPK,
                                     String classUuid,
                                     long[] categoryIds,
                                     String[] tagNames,
                                     boolean visible,
                                     Date startDate,
                                     Date endDate,
                                     Date publishDate,
                                     Date expirationDate,
                                     String mimeType,
                                     String title,
                                     String description,
                                     String summary,
                                     String url,
                                     int height,
                                     int width,
                                     Integer priority,
                                     boolean sync)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

updateVisible

public static AssetEntry updateVisible(String className,
                                       long classPK,
                                       boolean visible)
                                throws PortalException,
                                       SystemException
Throws:
PortalException
SystemException

validate

public static void validate(String className,
                            long[] categoryIds,
                            String[] tagNames)
                     throws PortalException
Throws:
PortalException

getService

public static AssetEntryLocalService getService()

setService

public void setService(AssetEntryLocalService service)

Liferay 6.0.5