Liferay 6.0-ee

com.liferay.portal.service.persistence
Interface LayoutSetPrototypePersistence

All Superinterfaces:
BasePersistence<LayoutSetPrototype>
All Known Implementing Classes:
LayoutSetPrototypePersistenceImpl

public interface LayoutSetPrototypePersistence
extends BasePersistence<LayoutSetPrototype>

The persistence interface for the layout set prototype service.

Never modify or reference this interface directly. Always use LayoutSetPrototypeUtil to access the layout set prototype persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
LayoutSetPrototypePersistenceImpl, LayoutSetPrototypeUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 void cacheResult(LayoutSetPrototype layoutSetPrototype)
          Caches the layout set prototype in the entity cache if it is enabled.
 void cacheResult(List<LayoutSetPrototype> layoutSetPrototypes)
          Caches the layout set prototypes in the entity cache if it is enabled.
 int countAll()
          Counts all the layout set prototypes.
 int countByC_A(long companyId, boolean active)
          Counts all the layout set prototypes where companyId = ? and active = ?.
 int countByCompanyId(long companyId)
          Counts all the layout set prototypes where companyId = ?.
 LayoutSetPrototype create(long layoutSetPrototypeId)
          Creates a new layout set prototype with the primary key.
 LayoutSetPrototype fetchByPrimaryKey(long layoutSetPrototypeId)
          Finds the layout set prototype with the primary key or returns null if it could not be found.
 List<LayoutSetPrototype> findAll()
          Finds all the layout set prototypes.
 List<LayoutSetPrototype> findAll(int start, int end)
          Finds a range of all the layout set prototypes.
 List<LayoutSetPrototype> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the layout set prototypes.
 LayoutSetPrototype findByC_A_First(long companyId, boolean active, OrderByComparator orderByComparator)
          Finds the first layout set prototype in the ordered set where companyId = ? and active = ?.
 LayoutSetPrototype findByC_A_Last(long companyId, boolean active, OrderByComparator orderByComparator)
          Finds the last layout set prototype in the ordered set where companyId = ? and active = ?.
 LayoutSetPrototype[] findByC_A_PrevAndNext(long layoutSetPrototypeId, long companyId, boolean active, OrderByComparator orderByComparator)
          Finds the layout set prototypes before and after the current layout set prototype in the ordered set where companyId = ? and active = ?.
 List<LayoutSetPrototype> findByC_A(long companyId, boolean active)
          Finds all the layout set prototypes where companyId = ? and active = ?.
 List<LayoutSetPrototype> findByC_A(long companyId, boolean active, int start, int end)
          Finds a range of all the layout set prototypes where companyId = ? and active = ?.
 List<LayoutSetPrototype> findByC_A(long companyId, boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the layout set prototypes where companyId = ? and active = ?.
 LayoutSetPrototype findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Finds the first layout set prototype in the ordered set where companyId = ?.
 LayoutSetPrototype findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Finds the last layout set prototype in the ordered set where companyId = ?.
 LayoutSetPrototype[] findByCompanyId_PrevAndNext(long layoutSetPrototypeId, long companyId, OrderByComparator orderByComparator)
          Finds the layout set prototypes before and after the current layout set prototype in the ordered set where companyId = ?.
 List<LayoutSetPrototype> findByCompanyId(long companyId)
          Finds all the layout set prototypes where companyId = ?.
 List<LayoutSetPrototype> findByCompanyId(long companyId, int start, int end)
          Finds a range of all the layout set prototypes where companyId = ?.
 List<LayoutSetPrototype> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the layout set prototypes where companyId = ?.
 LayoutSetPrototype findByPrimaryKey(long layoutSetPrototypeId)
          Finds the layout set prototype with the primary key or throws a NoSuchLayoutSetPrototypeException if it could not be found.
 LayoutSetPrototype remove(long layoutSetPrototypeId)
          Removes the layout set prototype with the primary key from the database.
 void removeAll()
          Removes all the layout set prototypes from the database.
 void removeByC_A(long companyId, boolean active)
          Removes all the layout set prototypes where companyId = ? and active = ? from the database.
 void removeByCompanyId(long companyId)
          Removes all the layout set prototypes where companyId = ? from the database.
 LayoutSetPrototype updateImpl(LayoutSetPrototype layoutSetPrototype, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(LayoutSetPrototype layoutSetPrototype)
Caches the layout set prototype in the entity cache if it is enabled.

Parameters:
layoutSetPrototype - the layout set prototype to cache

cacheResult

void cacheResult(List<LayoutSetPrototype> layoutSetPrototypes)
Caches the layout set prototypes in the entity cache if it is enabled.

Parameters:
layoutSetPrototypes - the layout set prototypes to cache

create

LayoutSetPrototype create(long layoutSetPrototypeId)
Creates a new layout set prototype with the primary key. Does not add the layout set prototype to the database.

Parameters:
layoutSetPrototypeId - the primary key for the new layout set prototype
Returns:
the new layout set prototype

remove

LayoutSetPrototype remove(long layoutSetPrototypeId)
                          throws NoSuchLayoutSetPrototypeException,
                                 SystemException
Removes the layout set prototype with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
layoutSetPrototypeId - the primary key of the layout set prototype to remove
Returns:
the layout set prototype that was removed
Throws:
NoSuchLayoutSetPrototypeException - if a layout set prototype with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

LayoutSetPrototype updateImpl(LayoutSetPrototype layoutSetPrototype,
                              boolean merge)
                              throws SystemException
Throws:
SystemException

findByPrimaryKey

LayoutSetPrototype findByPrimaryKey(long layoutSetPrototypeId)
                                    throws NoSuchLayoutSetPrototypeException,
                                           SystemException
Finds the layout set prototype with the primary key or throws a NoSuchLayoutSetPrototypeException if it could not be found.

Parameters:
layoutSetPrototypeId - the primary key of the layout set prototype to find
Returns:
the layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a layout set prototype with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

LayoutSetPrototype fetchByPrimaryKey(long layoutSetPrototypeId)
                                     throws SystemException
Finds the layout set prototype with the primary key or returns null if it could not be found.

Parameters:
layoutSetPrototypeId - the primary key of the layout set prototype to find
Returns:
the layout set prototype, or null if a layout set prototype with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<LayoutSetPrototype> findByCompanyId(long companyId)
                                         throws SystemException
Finds all the layout set prototypes where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the matching layout set prototypes
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<LayoutSetPrototype> findByCompanyId(long companyId,
                                         int start,
                                         int end)
                                         throws SystemException
Finds a range of all the layout set prototypes where companyId = ?.

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:
companyId - the company id to search with
start - the lower bound of the range of layout set prototypes to return
end - the upper bound of the range of layout set prototypes to return (not inclusive)
Returns:
the range of matching layout set prototypes
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<LayoutSetPrototype> findByCompanyId(long companyId,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Finds an ordered range of all the layout set prototypes where companyId = ?.

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:
companyId - the company id to search with
start - the lower bound of the range of layout set prototypes to return
end - the upper bound of the range of layout set prototypes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching layout set prototypes
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

LayoutSetPrototype findByCompanyId_First(long companyId,
                                         OrderByComparator orderByComparator)
                                         throws NoSuchLayoutSetPrototypeException,
                                                SystemException
Finds the first layout set prototype in the ordered set where companyId = ?.

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:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a matching layout set prototype could not be found
SystemException - if a system exception occurred

findByCompanyId_Last

LayoutSetPrototype findByCompanyId_Last(long companyId,
                                        OrderByComparator orderByComparator)
                                        throws NoSuchLayoutSetPrototypeException,
                                               SystemException
Finds the last layout set prototype in the ordered set where companyId = ?.

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:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a matching layout set prototype could not be found
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

LayoutSetPrototype[] findByCompanyId_PrevAndNext(long layoutSetPrototypeId,
                                                 long companyId,
                                                 OrderByComparator orderByComparator)
                                                 throws NoSuchLayoutSetPrototypeException,
                                                        SystemException
Finds the layout set prototypes before and after the current layout set prototype in the ordered set where companyId = ?.

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:
layoutSetPrototypeId - the primary key of the current layout set prototype
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a layout set prototype with the primary key could not be found
SystemException - if a system exception occurred

findByC_A

List<LayoutSetPrototype> findByC_A(long companyId,
                                   boolean active)
                                   throws SystemException
Finds all the layout set prototypes where companyId = ? and active = ?.

Parameters:
companyId - the company id to search with
active - the active to search with
Returns:
the matching layout set prototypes
Throws:
SystemException - if a system exception occurred

findByC_A

List<LayoutSetPrototype> findByC_A(long companyId,
                                   boolean active,
                                   int start,
                                   int end)
                                   throws SystemException
Finds a range of all the layout set prototypes where companyId = ? and active = ?.

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:
companyId - the company id to search with
active - the active to search with
start - the lower bound of the range of layout set prototypes to return
end - the upper bound of the range of layout set prototypes to return (not inclusive)
Returns:
the range of matching layout set prototypes
Throws:
SystemException - if a system exception occurred

findByC_A

List<LayoutSetPrototype> findByC_A(long companyId,
                                   boolean active,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the layout set prototypes where companyId = ? and active = ?.

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:
companyId - the company id to search with
active - the active to search with
start - the lower bound of the range of layout set prototypes to return
end - the upper bound of the range of layout set prototypes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching layout set prototypes
Throws:
SystemException - if a system exception occurred

findByC_A_First

LayoutSetPrototype findByC_A_First(long companyId,
                                   boolean active,
                                   OrderByComparator orderByComparator)
                                   throws NoSuchLayoutSetPrototypeException,
                                          SystemException
Finds the first layout set prototype in the ordered set where companyId = ? and active = ?.

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:
companyId - the company id to search with
active - the active to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a matching layout set prototype could not be found
SystemException - if a system exception occurred

findByC_A_Last

LayoutSetPrototype findByC_A_Last(long companyId,
                                  boolean active,
                                  OrderByComparator orderByComparator)
                                  throws NoSuchLayoutSetPrototypeException,
                                         SystemException
Finds the last layout set prototype in the ordered set where companyId = ? and active = ?.

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:
companyId - the company id to search with
active - the active to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a matching layout set prototype could not be found
SystemException - if a system exception occurred

findByC_A_PrevAndNext

LayoutSetPrototype[] findByC_A_PrevAndNext(long layoutSetPrototypeId,
                                           long companyId,
                                           boolean active,
                                           OrderByComparator orderByComparator)
                                           throws NoSuchLayoutSetPrototypeException,
                                                  SystemException
Finds the layout set prototypes before and after the current layout set prototype in the ordered set where companyId = ? and active = ?.

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:
layoutSetPrototypeId - the primary key of the current layout set prototype
companyId - the company id to search with
active - the active to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next layout set prototype
Throws:
NoSuchLayoutSetPrototypeException - if a layout set prototype with the primary key could not be found
SystemException - if a system exception occurred

findAll

List<LayoutSetPrototype> findAll()
                                 throws SystemException
Finds all the layout set prototypes.

Returns:
the layout set prototypes
Throws:
SystemException - if a system exception occurred

findAll

List<LayoutSetPrototype> findAll(int start,
                                 int end)
                                 throws SystemException
Finds a range of all the layout set prototypes.

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 layout set prototypes to return
end - the upper bound of the range of layout set prototypes to return (not inclusive)
Returns:
the range of layout set prototypes
Throws:
SystemException - if a system exception occurred

findAll

List<LayoutSetPrototype> findAll(int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the layout set prototypes.

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 layout set prototypes to return
end - the upper bound of the range of layout set prototypes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of layout set prototypes
Throws:
SystemException - if a system exception occurred

removeByCompanyId

void removeByCompanyId(long companyId)
                       throws SystemException
Removes all the layout set prototypes where companyId = ? from the database.

Parameters:
companyId - the company id to search with
Throws:
SystemException - if a system exception occurred

removeByC_A

void removeByC_A(long companyId,
                 boolean active)
                 throws SystemException
Removes all the layout set prototypes where companyId = ? and active = ? from the database.

Parameters:
companyId - the company id to search with
active - the active to search with
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the layout set prototypes from the database.

Throws:
SystemException - if a system exception occurred

countByCompanyId

int countByCompanyId(long companyId)
                     throws SystemException
Counts all the layout set prototypes where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the number of matching layout set prototypes
Throws:
SystemException - if a system exception occurred

countByC_A

int countByC_A(long companyId,
               boolean active)
               throws SystemException
Counts all the layout set prototypes where companyId = ? and active = ?.

Parameters:
companyId - the company id to search with
active - the active to search with
Returns:
the number of matching layout set prototypes
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the layout set prototypes.

Returns:
the number of layout set prototypes
Throws:
SystemException - if a system exception occurred

Liferay 6.0-ee