|
Liferay 6.2.0-ce-m1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface PluginSettingPersistence
The persistence interface for the plugin setting service.
Caching information and settings can be found in portal.properties
PluginSettingPersistenceImpl,
PluginSettingUtil| Method Summary | |
|---|---|
void |
cacheResult(List<PluginSetting> pluginSettings)
Caches the plugin settings in the entity cache if it is enabled. |
void |
cacheResult(PluginSetting pluginSetting)
Caches the plugin setting in the entity cache if it is enabled. |
int |
countAll()
Returns the number of plugin settings. |
int |
countByC_I_T(long companyId,
String pluginId,
String pluginType)
Returns the number of plugin settings where companyId = ? and pluginId = ? and pluginType = ?. |
int |
countByCompanyId(long companyId)
Returns the number of plugin settings where companyId = ?. |
PluginSetting |
create(long pluginSettingId)
Creates a new plugin setting with the primary key. |
PluginSetting |
fetchByC_I_T(long companyId,
String pluginId,
String pluginType)
Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or returns null if it could not be found. |
PluginSetting |
fetchByC_I_T(long companyId,
String pluginId,
String pluginType,
boolean retrieveFromCache)
Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or returns null if it could not be found, optionally using the finder cache. |
PluginSetting |
fetchByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first plugin setting in the ordered set where companyId = ?. |
PluginSetting |
fetchByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last plugin setting in the ordered set where companyId = ?. |
PluginSetting |
fetchByPrimaryKey(long pluginSettingId)
Returns the plugin setting with the primary key or returns null if it could not be found. |
List<PluginSetting> |
findAll()
Returns all the plugin settings. |
List<PluginSetting> |
findAll(int start,
int end)
Returns a range of all the plugin settings. |
List<PluginSetting> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the plugin settings. |
PluginSetting |
findByC_I_T(long companyId,
String pluginId,
String pluginType)
Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or throws a NoSuchPluginSettingException if it could not be found. |
PluginSetting |
findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first plugin setting in the ordered set where companyId = ?. |
PluginSetting |
findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last plugin setting in the ordered set where companyId = ?. |
PluginSetting[] |
findByCompanyId_PrevAndNext(long pluginSettingId,
long companyId,
OrderByComparator orderByComparator)
Returns the plugin settings before and after the current plugin setting in the ordered set where companyId = ?. |
List<PluginSetting> |
findByCompanyId(long companyId)
Returns all the plugin settings where companyId = ?. |
List<PluginSetting> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the plugin settings where companyId = ?. |
List<PluginSetting> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the plugin settings where companyId = ?. |
PluginSetting |
findByPrimaryKey(long pluginSettingId)
Returns the plugin setting with the primary key or throws a NoSuchPluginSettingException if it could not be found. |
PluginSetting |
remove(long pluginSettingId)
Removes the plugin setting with the primary key from the database. |
void |
removeAll()
Removes all the plugin settings from the database. |
PluginSetting |
removeByC_I_T(long companyId,
String pluginId,
String pluginType)
Removes the plugin setting where companyId = ? and pluginId = ? and pluginType = ? from the database. |
void |
removeByCompanyId(long companyId)
Removes all the plugin settings where companyId = ? from the database. |
PluginSetting |
updateImpl(PluginSetting pluginSetting)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, update |
| Method Detail |
|---|
void cacheResult(PluginSetting pluginSetting)
pluginSetting - the plugin settingvoid cacheResult(List<PluginSetting> pluginSettings)
pluginSettings - the plugin settingsPluginSetting create(long pluginSettingId)
pluginSettingId - the primary key for the new plugin setting
PluginSetting remove(long pluginSettingId)
throws NoSuchPluginSettingException,
SystemException
pluginSettingId - the primary key of the plugin setting
NoSuchPluginSettingException - if a plugin setting with the primary key could not be found
SystemException - if a system exception occurred
PluginSetting updateImpl(PluginSetting pluginSetting)
throws SystemException
SystemException
PluginSetting findByPrimaryKey(long pluginSettingId)
throws NoSuchPluginSettingException,
SystemException
NoSuchPluginSettingException if it could not be found.
pluginSettingId - the primary key of the plugin setting
NoSuchPluginSettingException - if a plugin setting with the primary key could not be found
SystemException - if a system exception occurred
PluginSetting fetchByPrimaryKey(long pluginSettingId)
throws SystemException
null if it could not be found.
pluginSettingId - the primary key of the plugin setting
null if a plugin setting with the primary key could not be found
SystemException - if a system exception occurred
List<PluginSetting> findByCompanyId(long companyId)
throws SystemException
companyId - the company ID
SystemException - if a system exception occurred
List<PluginSetting> findByCompanyId(long companyId,
int start,
int end)
throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of plugin settingsend - the upper bound of the range of plugin settings (not inclusive)
SystemException - if a system exception occurred
List<PluginSetting> findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of plugin settingsend - the upper bound of the range of plugin settings (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
PluginSetting findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
throws NoSuchPluginSettingException,
SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchPluginSettingException - if a matching plugin setting could not be found
SystemException - if a system exception occurred
PluginSetting fetchByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
null if a matching plugin setting could not be found
SystemException - if a system exception occurred
PluginSetting findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
throws NoSuchPluginSettingException,
SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchPluginSettingException - if a matching plugin setting could not be found
SystemException - if a system exception occurred
PluginSetting fetchByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
null if a matching plugin setting could not be found
SystemException - if a system exception occurred
PluginSetting[] findByCompanyId_PrevAndNext(long pluginSettingId,
long companyId,
OrderByComparator orderByComparator)
throws NoSuchPluginSettingException,
SystemException
pluginSettingId - the primary key of the current plugin settingcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchPluginSettingException - if a plugin setting with the primary key could not be found
SystemException - if a system exception occurred
PluginSetting findByC_I_T(long companyId,
String pluginId,
String pluginType)
throws NoSuchPluginSettingException,
SystemException
NoSuchPluginSettingException if it could not be found.
companyId - the company IDpluginId - the plugin IDpluginType - the plugin type
NoSuchPluginSettingException - if a matching plugin setting could not be found
SystemException - if a system exception occurred
PluginSetting fetchByC_I_T(long companyId,
String pluginId,
String pluginType)
throws SystemException
null if it could not be found. Uses the finder cache.
companyId - the company IDpluginId - the plugin IDpluginType - the plugin type
null if a matching plugin setting could not be found
SystemException - if a system exception occurred
PluginSetting fetchByC_I_T(long companyId,
String pluginId,
String pluginType,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
companyId - the company IDpluginId - the plugin IDpluginType - the plugin typeretrieveFromCache - whether to use the finder cache
null if a matching plugin setting could not be found
SystemException - if a system exception occurred
List<PluginSetting> findAll()
throws SystemException
SystemException - if a system exception occurred
List<PluginSetting> findAll(int start,
int end)
throws SystemException
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.
start - the lower bound of the range of plugin settingsend - the upper bound of the range of plugin settings (not inclusive)
SystemException - if a system exception occurred
List<PluginSetting> findAll(int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
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.
start - the lower bound of the range of plugin settingsend - the upper bound of the range of plugin settings (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
void removeByCompanyId(long companyId)
throws SystemException
companyId - the company ID
SystemException - if a system exception occurred
PluginSetting removeByC_I_T(long companyId,
String pluginId,
String pluginType)
throws NoSuchPluginSettingException,
SystemException
companyId - the company IDpluginId - the plugin IDpluginType - the plugin type
SystemException - if a system exception occurred
NoSuchPluginSettingException
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countByCompanyId(long companyId)
throws SystemException
companyId - the company ID
SystemException - if a system exception occurred
int countByC_I_T(long companyId,
String pluginId,
String pluginType)
throws SystemException
companyId - the company IDpluginId - the plugin IDpluginType - the plugin type
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.2.0-ce-m1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||