@ProviderType public interface PluginSettingPersistence extends BasePersistence<PluginSetting>
Caching information and settings can be found in portal.properties
PluginSettingPersistenceImpl
,
PluginSettingUtil
Modifier and Type | Method and Description |
---|---|
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<PluginSetting> orderByComparator)
Returns the first plugin setting in the ordered set where companyId = ?.
|
PluginSetting |
fetchByCompanyId_Last(long companyId,
OrderByComparator<PluginSetting> 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. |
Map<Serializable,PluginSetting> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
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<PluginSetting> orderByComparator)
Returns an ordered range of all the plugin settings.
|
List<PluginSetting> |
findAll(int start,
int end,
OrderByComparator<PluginSetting> orderByComparator,
boolean retrieveFromCache)
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<PluginSetting> orderByComparator)
Returns the first plugin setting in the ordered set where companyId = ?.
|
PluginSetting |
findByCompanyId_Last(long companyId,
OrderByComparator<PluginSetting> orderByComparator)
Returns the last plugin setting in the ordered set where companyId = ?.
|
PluginSetting[] |
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 = ?.
|
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<PluginSetting> orderByComparator)
Returns an ordered range of all the plugin settings where companyId = ?.
|
List<PluginSetting> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<PluginSetting> orderByComparator,
boolean retrieveFromCache)
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. |
Set<String> |
getBadColumnNames() |
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) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
List<PluginSetting> findByCompanyId(long companyId)
companyId
- the company IDList<PluginSetting> findByCompanyId(long companyId, int start, int end)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from PluginSettingModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDstart
- the lower bound of the range of plugin settingsend
- the upper bound of the range of plugin settings (not inclusive)List<PluginSetting> findByCompanyId(long companyId, int start, int end, OrderByComparator<PluginSetting> orderByComparator)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from PluginSettingModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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
)List<PluginSetting> findByCompanyId(long companyId, int start, int end, OrderByComparator<PluginSetting> orderByComparator, boolean retrieveFromCache)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from PluginSettingModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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
)retrieveFromCache
- whether to retrieve from the finder cachePluginSetting findByCompanyId_First(long companyId, OrderByComparator<PluginSetting> orderByComparator) throws NoSuchPluginSettingException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchPluginSettingException
- if a matching plugin setting could not be foundPluginSetting fetchByCompanyId_First(long companyId, OrderByComparator<PluginSetting> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching plugin setting could not be foundPluginSetting findByCompanyId_Last(long companyId, OrderByComparator<PluginSetting> orderByComparator) throws NoSuchPluginSettingException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchPluginSettingException
- if a matching plugin setting could not be foundPluginSetting fetchByCompanyId_Last(long companyId, OrderByComparator<PluginSetting> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching plugin setting could not be foundPluginSetting[] findByCompanyId_PrevAndNext(long pluginSettingId, long companyId, OrderByComparator<PluginSetting> orderByComparator) throws NoSuchPluginSettingException
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 foundvoid removeByCompanyId(long companyId)
companyId
- the company IDint countByCompanyId(long companyId)
companyId
- the company IDPluginSetting findByC_I_T(long companyId, String pluginId, String pluginType) throws NoSuchPluginSettingException
NoSuchPluginSettingException
if it could not be found.companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typeNoSuchPluginSettingException
- if a matching plugin setting could not be foundPluginSetting fetchByC_I_T(long companyId, String pluginId, String pluginType)
null
if it could not be found. Uses the finder cache.companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typenull
if a matching plugin setting could not be foundPluginSetting fetchByC_I_T(long companyId, String pluginId, String pluginType, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typeretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching plugin setting could not be foundPluginSetting removeByC_I_T(long companyId, String pluginId, String pluginType) throws NoSuchPluginSettingException
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typeNoSuchPluginSettingException
int countByC_I_T(long companyId, String pluginId, String pluginType)
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typevoid 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 settingPluginSetting remove(long pluginSettingId) throws NoSuchPluginSettingException
pluginSettingId
- the primary key of the plugin settingNoSuchPluginSettingException
- if a plugin setting with the primary key could not be foundPluginSetting updateImpl(PluginSetting pluginSetting)
PluginSetting findByPrimaryKey(long pluginSettingId) throws NoSuchPluginSettingException
NoSuchPluginSettingException
if it could not be found.pluginSettingId
- the primary key of the plugin settingNoSuchPluginSettingException
- if a plugin setting with the primary key could not be foundPluginSetting fetchByPrimaryKey(long pluginSettingId)
null
if it could not be found.pluginSettingId
- the primary key of the plugin settingnull
if a plugin setting with the primary key could not be foundMap<Serializable,PluginSetting> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<PluginSetting>
List<PluginSetting> findAll()
List<PluginSetting> findAll(int start, int end)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from PluginSettingModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of plugin settingsend
- the upper bound of the range of plugin settings (not inclusive)List<PluginSetting> findAll(int start, int end, OrderByComparator<PluginSetting> orderByComparator)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from PluginSettingModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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
)List<PluginSetting> findAll(int start, int end, OrderByComparator<PluginSetting> orderByComparator, boolean retrieveFromCache)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from PluginSettingModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()
Set<String> getBadColumnNames()
getBadColumnNames
in interface BasePersistence<PluginSetting>