|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portal.service.PluginSettingLocalServiceWrapper
public class PluginSettingLocalServiceWrapper
This class is a wrapper for PluginSettingLocalService
.
PluginSettingLocalService
Constructor Summary | |
---|---|
PluginSettingLocalServiceWrapper(PluginSettingLocalService pluginSettingLocalService)
|
Method Summary | |
---|---|
PluginSetting |
addPluginSetting(PluginSetting pluginSetting)
Adds the plugin setting to the database. |
void |
checkPermission(long userId,
String pluginId,
String pluginType)
|
PluginSetting |
createPluginSetting(long pluginSettingId)
Creates a new plugin setting with the primary key. |
void |
deletePluginSetting(long pluginSettingId)
Deletes the plugin setting with the primary key from the database. |
void |
deletePluginSetting(PluginSetting pluginSetting)
Deletes the plugin setting from the database. |
List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Counts the number of rows that match the dynamic query. |
PluginSetting |
getDefaultPluginSetting()
|
PluginSetting |
getPluginSetting(long pluginSettingId)
Gets the plugin setting with the primary key. |
PluginSetting |
getPluginSetting(long companyId,
String pluginId,
String pluginType)
|
List<PluginSetting> |
getPluginSettings(int start,
int end)
Gets a range of all the plugin settings. |
int |
getPluginSettingsCount()
Gets the number of plugin settings. |
PluginSettingLocalService |
getWrappedPluginSettingLocalService()
|
boolean |
hasPermission(long userId,
String pluginId,
String pluginType)
|
PluginSetting |
updatePluginSetting(long companyId,
String pluginId,
String pluginType,
String roles,
boolean active)
|
PluginSetting |
updatePluginSetting(PluginSetting pluginSetting)
Updates the plugin setting in the database. |
PluginSetting |
updatePluginSetting(PluginSetting pluginSetting,
boolean merge)
Updates the plugin setting in the database. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PluginSettingLocalServiceWrapper(PluginSettingLocalService pluginSettingLocalService)
Method Detail |
---|
public PluginSetting addPluginSetting(PluginSetting pluginSetting) throws SystemException
addPluginSetting
in interface PluginSettingLocalService
pluginSetting
- the plugin setting to add
SystemException
- if a system exception occurredpublic PluginSetting createPluginSetting(long pluginSettingId)
createPluginSetting
in interface PluginSettingLocalService
pluginSettingId
- the primary key for the new plugin setting
public void deletePluginSetting(long pluginSettingId) throws PortalException, SystemException
deletePluginSetting
in interface PluginSettingLocalService
pluginSettingId
- the primary key of the plugin setting to delete
PortalException
- if a plugin setting with the primary key could not be found
SystemException
- if a system exception occurredpublic void deletePluginSetting(PluginSetting pluginSetting) throws SystemException
deletePluginSetting
in interface PluginSettingLocalService
pluginSetting
- the plugin setting to delete
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
in interface PluginSettingLocalService
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery, 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.
dynamicQuery
in interface PluginSettingLocalService
dynamicQuery
- the dynamic query to search withstart
- the lower bound of the range of model instances to returnend
- the upper bound of the range of model instances to return (not inclusive)
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery, 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.
dynamicQuery
in interface PluginSettingLocalService
dynamicQuery
- the dynamic query to search withstart
- the lower bound of the range of model instances to returnend
- the upper bound of the range of model instances to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic long dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQueryCount
in interface PluginSettingLocalService
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredpublic PluginSetting getPluginSetting(long pluginSettingId) throws PortalException, SystemException
getPluginSetting
in interface PluginSettingLocalService
pluginSettingId
- the primary key of the plugin setting to get
PortalException
- if a plugin setting with the primary key could not be found
SystemException
- if a system exception occurredpublic List<PluginSetting> getPluginSettings(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.
getPluginSettings
in interface PluginSettingLocalService
start
- the lower bound of the range of plugin settings to returnend
- the upper bound of the range of plugin settings to return (not inclusive)
SystemException
- if a system exception occurredpublic int getPluginSettingsCount() throws SystemException
getPluginSettingsCount
in interface PluginSettingLocalService
SystemException
- if a system exception occurredpublic PluginSetting updatePluginSetting(PluginSetting pluginSetting) throws SystemException
updatePluginSetting
in interface PluginSettingLocalService
pluginSetting
- the plugin setting to update
SystemException
- if a system exception occurredpublic PluginSetting updatePluginSetting(PluginSetting pluginSetting, boolean merge) throws SystemException
updatePluginSetting
in interface PluginSettingLocalService
pluginSetting
- the plugin setting to updatemerge
- whether to merge the plugin setting with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)
for an explanation.
SystemException
- if a system exception occurredpublic void checkPermission(long userId, String pluginId, String pluginType) throws PortalException
checkPermission
in interface PluginSettingLocalService
PortalException
public PluginSetting getDefaultPluginSetting()
getDefaultPluginSetting
in interface PluginSettingLocalService
public PluginSetting getPluginSetting(long companyId, String pluginId, String pluginType) throws SystemException
getPluginSetting
in interface PluginSettingLocalService
SystemException
public boolean hasPermission(long userId, String pluginId, String pluginType)
hasPermission
in interface PluginSettingLocalService
public PluginSetting updatePluginSetting(long companyId, String pluginId, String pluginType, String roles, boolean active) throws SystemException
updatePluginSetting
in interface PluginSettingLocalService
SystemException
public PluginSettingLocalService getWrappedPluginSettingLocalService()
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |