@ProviderType
public class PluginSettingUtil
extends Object
PluginSettingPersistenceImpl
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
PluginSettingPersistence
,
PluginSettingPersistenceImpl
Constructor and Description |
---|
PluginSettingUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(List<PluginSetting> pluginSettings)
Caches the plugin settings in the entity cache if it is enabled.
|
static void |
cacheResult(PluginSetting pluginSetting)
Caches the plugin setting in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(PluginSetting pluginSetting) |
static int |
countAll()
Returns the number of plugin settings.
|
static int |
countByC_I_T(long companyId,
String pluginId,
String pluginType)
Returns the number of plugin settings where companyId = ? and pluginId = ? and pluginType = ?.
|
static int |
countByCompanyId(long companyId)
Returns the number of plugin settings where companyId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static PluginSetting |
create(long pluginSettingId)
Creates a new plugin setting with the primary key.
|
static 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. |
static 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. |
static PluginSetting |
fetchByCompanyId_First(long companyId,
OrderByComparator<PluginSetting> orderByComparator)
Returns the first plugin setting in the ordered set where companyId = ?.
|
static PluginSetting |
fetchByCompanyId_Last(long companyId,
OrderByComparator<PluginSetting> orderByComparator)
Returns the last plugin setting in the ordered set where companyId = ?.
|
static PluginSetting |
fetchByPrimaryKey(long pluginSettingId)
Returns the plugin setting with the primary key or returns
null if it could not be found. |
static Map<Serializable,PluginSetting> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
static List<PluginSetting> |
findAll()
Returns all the plugin settings.
|
static List<PluginSetting> |
findAll(int start,
int end)
Returns a range of all the plugin settings.
|
static List<PluginSetting> |
findAll(int start,
int end,
OrderByComparator<PluginSetting> orderByComparator)
Returns an ordered range of all the plugin settings.
|
static List<PluginSetting> |
findAll(int start,
int end,
OrderByComparator<PluginSetting> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the plugin settings.
|
static 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. |
static PluginSetting |
findByCompanyId_First(long companyId,
OrderByComparator<PluginSetting> orderByComparator)
Returns the first plugin setting in the ordered set where companyId = ?.
|
static PluginSetting |
findByCompanyId_Last(long companyId,
OrderByComparator<PluginSetting> orderByComparator)
Returns the last plugin setting in the ordered set where companyId = ?.
|
static 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 = ?.
|
static List<PluginSetting> |
findByCompanyId(long companyId)
Returns all the plugin settings where companyId = ?.
|
static List<PluginSetting> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the plugin settings where companyId = ?.
|
static List<PluginSetting> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<PluginSetting> orderByComparator)
Returns an ordered range of all the plugin settings where companyId = ?.
|
static 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 = ?.
|
static PluginSetting |
findByPrimaryKey(long pluginSettingId)
Returns the plugin setting with the primary key or throws a
NoSuchPluginSettingException if it could not be found. |
static List<PluginSetting> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static List<PluginSetting> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static List<PluginSetting> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<PluginSetting> orderByComparator) |
static Set<String> |
getBadColumnNames() |
static PluginSettingPersistence |
getPersistence() |
static PluginSetting |
remove(long pluginSettingId)
Removes the plugin setting with the primary key from the database.
|
static void |
removeAll()
Removes all the plugin settings from the database.
|
static PluginSetting |
removeByC_I_T(long companyId,
String pluginId,
String pluginType)
Removes the plugin setting where companyId = ? and pluginId = ? and pluginType = ? from the database.
|
static void |
removeByCompanyId(long companyId)
Removes all the plugin settings where companyId = ? from the database.
|
static PluginSetting |
update(PluginSetting pluginSetting) |
static PluginSetting |
update(PluginSetting pluginSetting,
ServiceContext serviceContext) |
static PluginSetting |
updateImpl(PluginSetting pluginSetting) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(PluginSetting pluginSetting)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<PluginSetting> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<PluginSetting> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<PluginSetting> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<PluginSetting> orderByComparator)
public static PluginSetting update(PluginSetting pluginSetting)
public static PluginSetting update(PluginSetting pluginSetting, ServiceContext serviceContext)
public static List<PluginSetting> findByCompanyId(long companyId)
companyId
- the company IDpublic static List<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)public static 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
)public static 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 cachepublic static PluginSetting 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 foundpublic static PluginSetting 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 foundpublic static PluginSetting 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 foundpublic static PluginSetting 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 foundpublic static PluginSetting[] 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 foundpublic static void removeByCompanyId(long companyId)
companyId
- the company IDpublic static int countByCompanyId(long companyId)
companyId
- the company IDpublic static PluginSetting 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 foundpublic static PluginSetting 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 foundpublic static PluginSetting 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 foundpublic static PluginSetting removeByC_I_T(long companyId, String pluginId, String pluginType) throws NoSuchPluginSettingException
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typeNoSuchPluginSettingException
public static int countByC_I_T(long companyId, String pluginId, String pluginType)
companyId
- the company IDpluginId
- the plugin IDpluginType
- the plugin typepublic static void cacheResult(PluginSetting pluginSetting)
pluginSetting
- the plugin settingpublic static void cacheResult(List<PluginSetting> pluginSettings)
pluginSettings
- the plugin settingspublic static PluginSetting create(long pluginSettingId)
pluginSettingId
- the primary key for the new plugin settingpublic static PluginSetting remove(long pluginSettingId) throws NoSuchPluginSettingException
pluginSettingId
- the primary key of the plugin settingNoSuchPluginSettingException
- if a plugin setting with the primary key could not be foundpublic static PluginSetting updateImpl(PluginSetting pluginSetting)
public static 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 foundpublic static PluginSetting 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 foundpublic static Map<Serializable,PluginSetting> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<PluginSetting> findAll()
public static 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)public static 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
)public static 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 cachepublic static void removeAll()
public static int countAll()
public static Set<String> getBadColumnNames()
public static PluginSettingPersistence getPersistence()