Liferay 6.1.2-ce-ga3

com.liferay.portlet.softwarecatalog.service.persistence
Class SCProductScreenshotUtil

java.lang.Object
  extended by com.liferay.portlet.softwarecatalog.service.persistence.SCProductScreenshotUtil

public class SCProductScreenshotUtil
extends Object

The persistence utility for the s c product screenshot service. This utility wraps SCProductScreenshotPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
SCProductScreenshotPersistence, SCProductScreenshotPersistenceImpl

Constructor Summary
SCProductScreenshotUtil()
           
 
Method Summary
static void cacheResult(List<SCProductScreenshot> scProductScreenshots)
          Caches the s c product screenshots in the entity cache if it is enabled.
static void cacheResult(SCProductScreenshot scProductScreenshot)
          Caches the s c product screenshot in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(SCProductScreenshot scProductScreenshot)
           
static int countAll()
          Returns the number of s c product screenshots.
static int countByFullImageId(long fullImageId)
          Returns the number of s c product screenshots where fullImageId = ?.
static int countByP_P(long productEntryId, int priority)
          Returns the number of s c product screenshots where productEntryId = ? and priority = ?.
static int countByProductEntryId(long productEntryId)
          Returns the number of s c product screenshots where productEntryId = ?.
static int countByThumbnailId(long thumbnailId)
          Returns the number of s c product screenshots where thumbnailId = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static SCProductScreenshot create(long productScreenshotId)
          Creates a new s c product screenshot with the primary key.
static SCProductScreenshot fetchByFullImageId(long fullImageId)
          Returns the s c product screenshot where fullImageId = ? or returns null if it could not be found.
static SCProductScreenshot fetchByFullImageId(long fullImageId, boolean retrieveFromCache)
          Returns the s c product screenshot where fullImageId = ? or returns null if it could not be found, optionally using the finder cache.
static SCProductScreenshot fetchByP_P(long productEntryId, int priority)
          Returns the s c product screenshot where productEntryId = ? and priority = ? or returns null if it could not be found.
static SCProductScreenshot fetchByP_P(long productEntryId, int priority, boolean retrieveFromCache)
          Returns the s c product screenshot where productEntryId = ? and priority = ? or returns null if it could not be found, optionally using the finder cache.
static SCProductScreenshot fetchByPrimaryKey(long productScreenshotId)
          Returns the s c product screenshot with the primary key or returns null if it could not be found.
static SCProductScreenshot fetchByProductEntryId_First(long productEntryId, OrderByComparator orderByComparator)
          Returns the first s c product screenshot in the ordered set where productEntryId = ?.
static SCProductScreenshot fetchByProductEntryId_Last(long productEntryId, OrderByComparator orderByComparator)
          Returns the last s c product screenshot in the ordered set where productEntryId = ?.
static SCProductScreenshot fetchByThumbnailId(long thumbnailId)
          Returns the s c product screenshot where thumbnailId = ? or returns null if it could not be found.
static SCProductScreenshot fetchByThumbnailId(long thumbnailId, boolean retrieveFromCache)
          Returns the s c product screenshot where thumbnailId = ? or returns null if it could not be found, optionally using the finder cache.
static List<SCProductScreenshot> findAll()
          Returns all the s c product screenshots.
static List<SCProductScreenshot> findAll(int start, int end)
          Returns a range of all the s c product screenshots.
static List<SCProductScreenshot> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the s c product screenshots.
static SCProductScreenshot findByFullImageId(long fullImageId)
          Returns the s c product screenshot where fullImageId = ? or throws a NoSuchProductScreenshotException if it could not be found.
static SCProductScreenshot findByP_P(long productEntryId, int priority)
          Returns the s c product screenshot where productEntryId = ? and priority = ? or throws a NoSuchProductScreenshotException if it could not be found.
static SCProductScreenshot findByPrimaryKey(long productScreenshotId)
          Returns the s c product screenshot with the primary key or throws a NoSuchProductScreenshotException if it could not be found.
static SCProductScreenshot findByProductEntryId_First(long productEntryId, OrderByComparator orderByComparator)
          Returns the first s c product screenshot in the ordered set where productEntryId = ?.
static SCProductScreenshot findByProductEntryId_Last(long productEntryId, OrderByComparator orderByComparator)
          Returns the last s c product screenshot in the ordered set where productEntryId = ?.
static SCProductScreenshot[] findByProductEntryId_PrevAndNext(long productScreenshotId, long productEntryId, OrderByComparator orderByComparator)
          Returns the s c product screenshots before and after the current s c product screenshot in the ordered set where productEntryId = ?.
static List<SCProductScreenshot> findByProductEntryId(long productEntryId)
          Returns all the s c product screenshots where productEntryId = ?.
static List<SCProductScreenshot> findByProductEntryId(long productEntryId, int start, int end)
          Returns a range of all the s c product screenshots where productEntryId = ?.
static List<SCProductScreenshot> findByProductEntryId(long productEntryId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the s c product screenshots where productEntryId = ?.
static SCProductScreenshot findByThumbnailId(long thumbnailId)
          Returns the s c product screenshot where thumbnailId = ? or throws a NoSuchProductScreenshotException if it could not be found.
static List<SCProductScreenshot> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<SCProductScreenshot> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<SCProductScreenshot> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static SCProductScreenshotPersistence getPersistence()
           
static SCProductScreenshot remove(long productScreenshotId)
          Removes the s c product screenshot with the primary key from the database.
static void removeAll()
          Removes all the s c product screenshots from the database.
static SCProductScreenshot removeByFullImageId(long fullImageId)
          Removes the s c product screenshot where fullImageId = ? from the database.
static SCProductScreenshot removeByP_P(long productEntryId, int priority)
          Removes the s c product screenshot where productEntryId = ? and priority = ? from the database.
static void removeByProductEntryId(long productEntryId)
          Removes all the s c product screenshots where productEntryId = ? from the database.
static SCProductScreenshot removeByThumbnailId(long thumbnailId)
          Removes the s c product screenshot where thumbnailId = ? from the database.
 void setPersistence(SCProductScreenshotPersistence persistence)
          Deprecated.  
static SCProductScreenshot update(SCProductScreenshot scProductScreenshot, boolean merge)
           
static SCProductScreenshot update(SCProductScreenshot scProductScreenshot, boolean merge, ServiceContext serviceContext)
           
static SCProductScreenshot updateImpl(SCProductScreenshot scProductScreenshot, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SCProductScreenshotUtil

public SCProductScreenshotUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(SCProductScreenshot scProductScreenshot)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<SCProductScreenshot> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<SCProductScreenshot> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                             int start,
                                                             int end)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<SCProductScreenshot> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                             int start,
                                                             int end,
                                                             OrderByComparator orderByComparator)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static SCProductScreenshot update(SCProductScreenshot scProductScreenshot,
                                         boolean merge)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static SCProductScreenshot update(SCProductScreenshot scProductScreenshot,
                                         boolean merge,
                                         ServiceContext serviceContext)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(SCProductScreenshot scProductScreenshot)
Caches the s c product screenshot in the entity cache if it is enabled.

Parameters:
scProductScreenshot - the s c product screenshot

cacheResult

public static void cacheResult(List<SCProductScreenshot> scProductScreenshots)
Caches the s c product screenshots in the entity cache if it is enabled.

Parameters:
scProductScreenshots - the s c product screenshots

create

public static SCProductScreenshot create(long productScreenshotId)
Creates a new s c product screenshot with the primary key. Does not add the s c product screenshot to the database.

Parameters:
productScreenshotId - the primary key for the new s c product screenshot
Returns:
the new s c product screenshot

remove

public static SCProductScreenshot remove(long productScreenshotId)
                                  throws SystemException,
                                         NoSuchProductScreenshotException
Removes the s c product screenshot with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
productScreenshotId - the primary key of the s c product screenshot
Returns:
the s c product screenshot that was removed
Throws:
NoSuchProductScreenshotException - if a s c product screenshot with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static SCProductScreenshot updateImpl(SCProductScreenshot scProductScreenshot,
                                             boolean merge)
                                      throws SystemException
Throws:
SystemException

findByPrimaryKey

public static SCProductScreenshot findByPrimaryKey(long productScreenshotId)
                                            throws SystemException,
                                                   NoSuchProductScreenshotException
Returns the s c product screenshot with the primary key or throws a NoSuchProductScreenshotException if it could not be found.

Parameters:
productScreenshotId - the primary key of the s c product screenshot
Returns:
the s c product screenshot
Throws:
NoSuchProductScreenshotException - if a s c product screenshot with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static SCProductScreenshot fetchByPrimaryKey(long productScreenshotId)
                                             throws SystemException
Returns the s c product screenshot with the primary key or returns null if it could not be found.

Parameters:
productScreenshotId - the primary key of the s c product screenshot
Returns:
the s c product screenshot, or null if a s c product screenshot with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByProductEntryId

public static List<SCProductScreenshot> findByProductEntryId(long productEntryId)
                                                      throws SystemException
Returns all the s c product screenshots where productEntryId = ?.

Parameters:
productEntryId - the product entry ID
Returns:
the matching s c product screenshots
Throws:
SystemException - if a system exception occurred

findByProductEntryId

public static List<SCProductScreenshot> findByProductEntryId(long productEntryId,
                                                             int start,
                                                             int end)
                                                      throws SystemException
Returns a range of all the s c product screenshots where productEntryId = ?.

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:
productEntryId - the product entry ID
start - the lower bound of the range of s c product screenshots
end - the upper bound of the range of s c product screenshots (not inclusive)
Returns:
the range of matching s c product screenshots
Throws:
SystemException - if a system exception occurred

findByProductEntryId

public static List<SCProductScreenshot> findByProductEntryId(long productEntryId,
                                                             int start,
                                                             int end,
                                                             OrderByComparator orderByComparator)
                                                      throws SystemException
Returns an ordered range of all the s c product screenshots where productEntryId = ?.

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:
productEntryId - the product entry ID
start - the lower bound of the range of s c product screenshots
end - the upper bound of the range of s c product screenshots (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching s c product screenshots
Throws:
SystemException - if a system exception occurred

findByProductEntryId_First

public static SCProductScreenshot findByProductEntryId_First(long productEntryId,
                                                             OrderByComparator orderByComparator)
                                                      throws SystemException,
                                                             NoSuchProductScreenshotException
Returns the first s c product screenshot in the ordered set where productEntryId = ?.

Parameters:
productEntryId - the product entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching s c product screenshot
Throws:
NoSuchProductScreenshotException - if a matching s c product screenshot could not be found
SystemException - if a system exception occurred

fetchByProductEntryId_First

public static SCProductScreenshot fetchByProductEntryId_First(long productEntryId,
                                                              OrderByComparator orderByComparator)
                                                       throws SystemException
Returns the first s c product screenshot in the ordered set where productEntryId = ?.

Parameters:
productEntryId - the product entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

findByProductEntryId_Last

public static SCProductScreenshot findByProductEntryId_Last(long productEntryId,
                                                            OrderByComparator orderByComparator)
                                                     throws SystemException,
                                                            NoSuchProductScreenshotException
Returns the last s c product screenshot in the ordered set where productEntryId = ?.

Parameters:
productEntryId - the product entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching s c product screenshot
Throws:
NoSuchProductScreenshotException - if a matching s c product screenshot could not be found
SystemException - if a system exception occurred

fetchByProductEntryId_Last

public static SCProductScreenshot fetchByProductEntryId_Last(long productEntryId,
                                                             OrderByComparator orderByComparator)
                                                      throws SystemException
Returns the last s c product screenshot in the ordered set where productEntryId = ?.

Parameters:
productEntryId - the product entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

findByProductEntryId_PrevAndNext

public static SCProductScreenshot[] findByProductEntryId_PrevAndNext(long productScreenshotId,
                                                                     long productEntryId,
                                                                     OrderByComparator orderByComparator)
                                                              throws SystemException,
                                                                     NoSuchProductScreenshotException
Returns the s c product screenshots before and after the current s c product screenshot in the ordered set where productEntryId = ?.

Parameters:
productScreenshotId - the primary key of the current s c product screenshot
productEntryId - the product entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next s c product screenshot
Throws:
NoSuchProductScreenshotException - if a s c product screenshot with the primary key could not be found
SystemException - if a system exception occurred

findByThumbnailId

public static SCProductScreenshot findByThumbnailId(long thumbnailId)
                                             throws SystemException,
                                                    NoSuchProductScreenshotException
Returns the s c product screenshot where thumbnailId = ? or throws a NoSuchProductScreenshotException if it could not be found.

Parameters:
thumbnailId - the thumbnail ID
Returns:
the matching s c product screenshot
Throws:
NoSuchProductScreenshotException - if a matching s c product screenshot could not be found
SystemException - if a system exception occurred

fetchByThumbnailId

public static SCProductScreenshot fetchByThumbnailId(long thumbnailId)
                                              throws SystemException
Returns the s c product screenshot where thumbnailId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
thumbnailId - the thumbnail ID
Returns:
the matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

fetchByThumbnailId

public static SCProductScreenshot fetchByThumbnailId(long thumbnailId,
                                                     boolean retrieveFromCache)
                                              throws SystemException
Returns the s c product screenshot where thumbnailId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
thumbnailId - the thumbnail ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

findByFullImageId

public static SCProductScreenshot findByFullImageId(long fullImageId)
                                             throws SystemException,
                                                    NoSuchProductScreenshotException
Returns the s c product screenshot where fullImageId = ? or throws a NoSuchProductScreenshotException if it could not be found.

Parameters:
fullImageId - the full image ID
Returns:
the matching s c product screenshot
Throws:
NoSuchProductScreenshotException - if a matching s c product screenshot could not be found
SystemException - if a system exception occurred

fetchByFullImageId

public static SCProductScreenshot fetchByFullImageId(long fullImageId)
                                              throws SystemException
Returns the s c product screenshot where fullImageId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
fullImageId - the full image ID
Returns:
the matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

fetchByFullImageId

public static SCProductScreenshot fetchByFullImageId(long fullImageId,
                                                     boolean retrieveFromCache)
                                              throws SystemException
Returns the s c product screenshot where fullImageId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
fullImageId - the full image ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

findByP_P

public static SCProductScreenshot findByP_P(long productEntryId,
                                            int priority)
                                     throws SystemException,
                                            NoSuchProductScreenshotException
Returns the s c product screenshot where productEntryId = ? and priority = ? or throws a NoSuchProductScreenshotException if it could not be found.

Parameters:
productEntryId - the product entry ID
priority - the priority
Returns:
the matching s c product screenshot
Throws:
NoSuchProductScreenshotException - if a matching s c product screenshot could not be found
SystemException - if a system exception occurred

fetchByP_P

public static SCProductScreenshot fetchByP_P(long productEntryId,
                                             int priority)
                                      throws SystemException
Returns the s c product screenshot where productEntryId = ? and priority = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
productEntryId - the product entry ID
priority - the priority
Returns:
the matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

fetchByP_P

public static SCProductScreenshot fetchByP_P(long productEntryId,
                                             int priority,
                                             boolean retrieveFromCache)
                                      throws SystemException
Returns the s c product screenshot where productEntryId = ? and priority = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
productEntryId - the product entry ID
priority - the priority
retrieveFromCache - whether to use the finder cache
Returns:
the matching s c product screenshot, or null if a matching s c product screenshot could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<SCProductScreenshot> findAll()
                                         throws SystemException
Returns all the s c product screenshots.

Returns:
the s c product screenshots
Throws:
SystemException - if a system exception occurred

findAll

public static List<SCProductScreenshot> findAll(int start,
                                                int end)
                                         throws SystemException
Returns a range of all the s c product screenshots.

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 s c product screenshots
end - the upper bound of the range of s c product screenshots (not inclusive)
Returns:
the range of s c product screenshots
Throws:
SystemException - if a system exception occurred

findAll

public static List<SCProductScreenshot> findAll(int start,
                                                int end,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Returns an ordered range of all the s c product screenshots.

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 s c product screenshots
end - the upper bound of the range of s c product screenshots (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of s c product screenshots
Throws:
SystemException - if a system exception occurred

removeByProductEntryId

public static void removeByProductEntryId(long productEntryId)
                                   throws SystemException
Removes all the s c product screenshots where productEntryId = ? from the database.

Parameters:
productEntryId - the product entry ID
Throws:
SystemException - if a system exception occurred

removeByThumbnailId

public static SCProductScreenshot removeByThumbnailId(long thumbnailId)
                                               throws SystemException,
                                                      NoSuchProductScreenshotException
Removes the s c product screenshot where thumbnailId = ? from the database.

Parameters:
thumbnailId - the thumbnail ID
Returns:
the s c product screenshot that was removed
Throws:
SystemException - if a system exception occurred
NoSuchProductScreenshotException

removeByFullImageId

public static SCProductScreenshot removeByFullImageId(long fullImageId)
                                               throws SystemException,
                                                      NoSuchProductScreenshotException
Removes the s c product screenshot where fullImageId = ? from the database.

Parameters:
fullImageId - the full image ID
Returns:
the s c product screenshot that was removed
Throws:
SystemException - if a system exception occurred
NoSuchProductScreenshotException

removeByP_P

public static SCProductScreenshot removeByP_P(long productEntryId,
                                              int priority)
                                       throws SystemException,
                                              NoSuchProductScreenshotException
Removes the s c product screenshot where productEntryId = ? and priority = ? from the database.

Parameters:
productEntryId - the product entry ID
priority - the priority
Returns:
the s c product screenshot that was removed
Throws:
SystemException - if a system exception occurred
NoSuchProductScreenshotException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the s c product screenshots from the database.

Throws:
SystemException - if a system exception occurred

countByProductEntryId

public static int countByProductEntryId(long productEntryId)
                                 throws SystemException
Returns the number of s c product screenshots where productEntryId = ?.

Parameters:
productEntryId - the product entry ID
Returns:
the number of matching s c product screenshots
Throws:
SystemException - if a system exception occurred

countByThumbnailId

public static int countByThumbnailId(long thumbnailId)
                              throws SystemException
Returns the number of s c product screenshots where thumbnailId = ?.

Parameters:
thumbnailId - the thumbnail ID
Returns:
the number of matching s c product screenshots
Throws:
SystemException - if a system exception occurred

countByFullImageId

public static int countByFullImageId(long fullImageId)
                              throws SystemException
Returns the number of s c product screenshots where fullImageId = ?.

Parameters:
fullImageId - the full image ID
Returns:
the number of matching s c product screenshots
Throws:
SystemException - if a system exception occurred

countByP_P

public static int countByP_P(long productEntryId,
                             int priority)
                      throws SystemException
Returns the number of s c product screenshots where productEntryId = ? and priority = ?.

Parameters:
productEntryId - the product entry ID
priority - the priority
Returns:
the number of matching s c product screenshots
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of s c product screenshots.

Returns:
the number of s c product screenshots
Throws:
SystemException - if a system exception occurred

getPersistence

public static SCProductScreenshotPersistence getPersistence()

setPersistence

public void setPersistence(SCProductScreenshotPersistence persistence)
Deprecated. 


Liferay 6.1.2-ce-ga3