Interface PluginSettingPersistence
- All Superinterfaces:
BasePersistence<PluginSetting>
Caching information and settings can be found in portal.properties
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cacheResult
(PluginSetting pluginSetting) Caches the plugin setting in the entity cache if it is enabled.void
cacheResult
(List<PluginSetting> pluginSettings) Caches the plugin settings in the entity cache if it is enabled.int
countAll()
Returns the number of plugin settings.int
countByC_P_P
(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 = ?.create
(long pluginSettingId) Creates a new plugin setting with the primary key.fetchByC_P_P
(long companyId, String pluginId, String pluginType) Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or returnsnull
if it could not be found.fetchByC_P_P
(long companyId, String pluginId, String pluginType, boolean useFinderCache) Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or returnsnull
if it could not be found, optionally using the finder cache.fetchByCompanyId_First
(long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the first plugin setting in the ordered set where companyId = ?.fetchByCompanyId_Last
(long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the last plugin setting in the ordered set where companyId = ?.fetchByPrimaryKey
(long pluginSettingId) Returns the plugin setting with the primary key or returnsnull
if it could not be found.findAll()
Returns all the plugin settings.findAll
(int start, int end) Returns a range of all the plugin settings.findAll
(int start, int end, OrderByComparator<PluginSetting> orderByComparator) Returns an ordered range of all the plugin settings.findAll
(int start, int end, OrderByComparator<PluginSetting> orderByComparator, boolean useFinderCache) Returns an ordered range of all the plugin settings.findByC_P_P
(long companyId, String pluginId, String pluginType) Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or throws aNoSuchPluginSettingException
if it could not be found.findByCompanyId
(long companyId) Returns all the plugin settings where companyId = ?.findByCompanyId
(long companyId, int start, int end) Returns a range of all the plugin settings where companyId = ?.findByCompanyId
(long companyId, int start, int end, OrderByComparator<PluginSetting> orderByComparator) Returns an ordered range of all the plugin settings where companyId = ?.findByCompanyId
(long companyId, int start, int end, OrderByComparator<PluginSetting> orderByComparator, boolean useFinderCache) Returns an ordered range of all the plugin settings where companyId = ?.findByCompanyId_First
(long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the first plugin setting in the ordered set where companyId = ?.findByCompanyId_Last
(long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the last plugin setting in the ordered set where companyId = ?.findByCompanyId_PrevAndNext
(long pluginSettingId, long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the plugin settings before and after the current plugin setting in the ordered set where companyId = ?.findByPrimaryKey
(long pluginSettingId) Returns the plugin setting with the primary key or throws aNoSuchPluginSettingException
if it could not be found.remove
(long pluginSettingId) Removes the plugin setting with the primary key from the database.void
Removes all the plugin settings from the database.removeByC_P_P
(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.updateImpl
(PluginSetting pluginSetting) Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
-
Method Details
-
findByCompanyId
Returns all the plugin settings where companyId = ?.- Parameters:
companyId
- the company ID- Returns:
- the matching plugin settings
-
findByCompanyId
Returns a range of all the plugin settings where companyId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromPluginSettingModelImpl
.- Parameters:
companyId
- the company IDstart
- the lower bound of the range of plugin settingsend
- the upper bound of the range of plugin settings (not inclusive)- Returns:
- the range of matching plugin settings
-
findByCompanyId
List<PluginSetting> findByCompanyId(long companyId, int start, int end, OrderByComparator<PluginSetting> orderByComparator) Returns an ordered range of all the plugin settings where companyId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromPluginSettingModelImpl
.- Parameters:
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 (optionallynull
)- Returns:
- the ordered range of matching plugin settings
-
findByCompanyId
List<PluginSetting> findByCompanyId(long companyId, int start, int end, OrderByComparator<PluginSetting> orderByComparator, boolean useFinderCache) Returns an ordered range of all the plugin settings where companyId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromPluginSettingModelImpl
.- Parameters:
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 (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching plugin settings
-
findByCompanyId_First
PluginSetting findByCompanyId_First(long companyId, OrderByComparator<PluginSetting> orderByComparator) throws NoSuchPluginSettingException Returns the first plugin setting in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching plugin setting
- Throws:
NoSuchPluginSettingException
- if a matching plugin setting could not be found
-
fetchByCompanyId_First
PluginSetting fetchByCompanyId_First(long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the first plugin setting in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching plugin setting, or
null
if a matching plugin setting could not be found
-
findByCompanyId_Last
PluginSetting findByCompanyId_Last(long companyId, OrderByComparator<PluginSetting> orderByComparator) throws NoSuchPluginSettingException Returns the last plugin setting in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching plugin setting
- Throws:
NoSuchPluginSettingException
- if a matching plugin setting could not be found
-
fetchByCompanyId_Last
PluginSetting fetchByCompanyId_Last(long companyId, OrderByComparator<PluginSetting> orderByComparator) Returns the last plugin setting in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching plugin setting, or
null
if a matching plugin setting could not be found
-
findByCompanyId_PrevAndNext
PluginSetting[] findByCompanyId_PrevAndNext(long pluginSettingId, long companyId, OrderByComparator<PluginSetting> orderByComparator) throws NoSuchPluginSettingException Returns the plugin settings before and after the current plugin setting in the ordered set where companyId = ?.- Parameters:
pluginSettingId
- the primary key of the current plugin settingcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next plugin setting
- Throws:
NoSuchPluginSettingException
- if a plugin setting with the primary key could not be found
-
removeByCompanyId
void removeByCompanyId(long companyId) Removes all the plugin settings where companyId = ? from the database.- Parameters:
companyId
- the company ID
-
countByCompanyId
int countByCompanyId(long companyId) Returns the number of plugin settings where companyId = ?.- Parameters:
companyId
- the company ID- Returns:
- the number of matching plugin settings
-
findByC_P_P
PluginSetting findByC_P_P(long companyId, String pluginId, String pluginType) throws NoSuchPluginSettingException Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or throws aNoSuchPluginSettingException
if it could not be found.- Parameters:
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin type- Returns:
- the matching plugin setting
- Throws:
NoSuchPluginSettingException
- if a matching plugin setting could not be found
-
fetchByC_P_P
Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or returnsnull
if it could not be found. Uses the finder cache.- Parameters:
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin type- Returns:
- the matching plugin setting, or
null
if a matching plugin setting could not be found
-
fetchByC_P_P
PluginSetting fetchByC_P_P(long companyId, String pluginId, String pluginType, boolean useFinderCache) Returns the plugin setting where companyId = ? and pluginId = ? and pluginType = ? or returnsnull
if it could not be found, optionally using the finder cache.- Parameters:
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typeuseFinderCache
- whether to use the finder cache- Returns:
- the matching plugin setting, or
null
if a matching plugin setting could not be found
-
removeByC_P_P
PluginSetting removeByC_P_P(long companyId, String pluginId, String pluginType) throws NoSuchPluginSettingException Removes the plugin setting where companyId = ? and pluginId = ? and pluginType = ? from the database.- Parameters:
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin type- Returns:
- the plugin setting that was removed
- Throws:
NoSuchPluginSettingException
-
countByC_P_P
Returns the number of plugin settings where companyId = ? and pluginId = ? and pluginType = ?.- Parameters:
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin type- Returns:
- the number of matching plugin settings
-
cacheResult
Caches the plugin setting in the entity cache if it is enabled.- Parameters:
pluginSetting
- the plugin setting
-
cacheResult
Caches the plugin settings in the entity cache if it is enabled.- Parameters:
pluginSettings
- the plugin settings
-
create
Creates a new plugin setting with the primary key. Does not add the plugin setting to the database.- Parameters:
pluginSettingId
- the primary key for the new plugin setting- Returns:
- the new plugin setting
-
remove
Removes the plugin setting with the primary key from the database. Also notifies the appropriate model listeners.- Parameters:
pluginSettingId
- the primary key of the plugin setting- Returns:
- the plugin setting that was removed
- Throws:
NoSuchPluginSettingException
- if a plugin setting with the primary key could not be found
-
updateImpl
-
findByPrimaryKey
Returns the plugin setting with the primary key or throws aNoSuchPluginSettingException
if it could not be found.- Parameters:
pluginSettingId
- the primary key of the plugin setting- Returns:
- the plugin setting
- Throws:
NoSuchPluginSettingException
- if a plugin setting with the primary key could not be found
-
fetchByPrimaryKey
Returns the plugin setting with the primary key or returnsnull
if it could not be found.- Parameters:
pluginSettingId
- the primary key of the plugin setting- Returns:
- the plugin setting, or
null
if a plugin setting with the primary key could not be found
-
findAll
List<PluginSetting> findAll()Returns all the plugin settings.- Returns:
- the plugin settings
-
findAll
Returns a range of all the plugin settings.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromPluginSettingModelImpl
.- Parameters:
start
- the lower bound of the range of plugin settingsend
- the upper bound of the range of plugin settings (not inclusive)- Returns:
- the range of plugin settings
-
findAll
Returns an ordered range of all the plugin settings.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromPluginSettingModelImpl
.- Parameters:
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 (optionallynull
)- Returns:
- the ordered range of plugin settings
-
findAll
List<PluginSetting> findAll(int start, int end, OrderByComparator<PluginSetting> orderByComparator, boolean useFinderCache) Returns an ordered range of all the plugin settings.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromPluginSettingModelImpl
.- Parameters:
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 (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of plugin settings
-
removeAll
void removeAll()Removes all the plugin settings from the database. -
countAll
int countAll()Returns the number of plugin settings.- Returns:
- the number of plugin settings
-