|
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.portlet.asset.service.AssetCategoryLocalServiceWrapper
public class AssetCategoryLocalServiceWrapper
This class is a wrapper for AssetCategoryLocalService
.
AssetCategoryLocalService
Constructor Summary | |
---|---|
AssetCategoryLocalServiceWrapper(AssetCategoryLocalService assetCategoryLocalService)
|
Method Summary | |
---|---|
AssetCategory |
addAssetCategory(AssetCategory assetCategory)
Adds the asset category to the database. |
AssetCategory |
addCategory(long userId,
long parentCategoryId,
Map<Locale,String> titleMap,
long vocabularyId,
String[] categoryProperties,
ServiceContext serviceContext)
|
void |
addCategoryResources(AssetCategory category,
boolean addCommunityPermissions,
boolean addGuestPermissions)
|
void |
addCategoryResources(AssetCategory category,
String[] communityPermissions,
String[] guestPermissions)
|
AssetCategory |
createAssetCategory(long categoryId)
Creates a new asset category with the primary key. |
void |
deleteAssetCategory(AssetCategory assetCategory)
Deletes the asset category from the database. |
void |
deleteAssetCategory(long categoryId)
Deletes the asset category with the primary key from the database. |
void |
deleteCategory(AssetCategory category)
|
void |
deleteCategory(long categoryId)
|
void |
deleteVocabularyCategories(long vocabularyId)
|
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. |
List<AssetCategory> |
getAssetCategories(int start,
int end)
Gets a range of all the asset categories. |
int |
getAssetCategoriesCount()
Gets the number of asset categories. |
AssetCategory |
getAssetCategory(long categoryId)
Gets the asset category with the primary key. |
AssetCategory |
getAssetCategoryByUuidAndGroupId(String uuid,
long groupId)
Gets the asset category with the UUID and group id. |
List<AssetCategory> |
getCategories()
|
List<AssetCategory> |
getCategories(long classNameId,
long classPK)
|
List<AssetCategory> |
getCategories(String className,
long classPK)
|
AssetCategory |
getCategory(long categoryId)
|
long[] |
getCategoryIds(String className,
long classPK)
|
List<AssetCategory> |
getChildCategories(long parentCategoryId,
int start,
int end,
OrderByComparator obc)
|
int |
getChildCategoriesCount(long parentCategoryId)
|
List<AssetCategory> |
getEntryCategories(long entryId)
|
List<AssetCategory> |
getVocabularyCategories(long vocabularyId,
int start,
int end,
OrderByComparator obc)
|
List<AssetCategory> |
getVocabularyCategories(long parentCategoryId,
long vocabularyId,
int start,
int end,
OrderByComparator obc)
|
List<AssetCategory> |
getVocabularyRootCategories(long vocabularyId,
int start,
int end,
OrderByComparator obc)
|
AssetCategoryLocalService |
getWrappedAssetCategoryLocalService()
|
void |
mergeCategories(long fromCategoryId,
long toCategoryId)
|
JSONArray |
search(long groupId,
String name,
String[] categoryProperties,
int start,
int end)
|
AssetCategory |
updateAssetCategory(AssetCategory assetCategory)
Updates the asset category in the database. |
AssetCategory |
updateAssetCategory(AssetCategory assetCategory,
boolean merge)
Updates the asset category in the database. |
AssetCategory |
updateCategory(long userId,
long categoryId,
long parentCategoryId,
Map<Locale,String> titleMap,
long vocabularyId,
String[] categoryProperties,
ServiceContext serviceContext)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AssetCategoryLocalServiceWrapper(AssetCategoryLocalService assetCategoryLocalService)
Method Detail |
---|
public AssetCategory addAssetCategory(AssetCategory assetCategory) throws SystemException
addAssetCategory
in interface AssetCategoryLocalService
assetCategory
- the asset category to add
SystemException
- if a system exception occurredpublic AssetCategory createAssetCategory(long categoryId)
createAssetCategory
in interface AssetCategoryLocalService
categoryId
- the primary key for the new asset category
public void deleteAssetCategory(long categoryId) throws PortalException, SystemException
deleteAssetCategory
in interface AssetCategoryLocalService
categoryId
- the primary key of the asset category to delete
PortalException
- if a asset category with the primary key could not be found
SystemException
- if a system exception occurredpublic void deleteAssetCategory(AssetCategory assetCategory) throws SystemException
deleteAssetCategory
in interface AssetCategoryLocalService
assetCategory
- the asset category to delete
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
in interface AssetCategoryLocalService
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 AssetCategoryLocalService
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 AssetCategoryLocalService
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 AssetCategoryLocalService
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredpublic AssetCategory getAssetCategory(long categoryId) throws PortalException, SystemException
getAssetCategory
in interface AssetCategoryLocalService
categoryId
- the primary key of the asset category to get
PortalException
- if a asset category with the primary key could not be found
SystemException
- if a system exception occurredpublic AssetCategory getAssetCategoryByUuidAndGroupId(String uuid, long groupId) throws PortalException, SystemException
getAssetCategoryByUuidAndGroupId
in interface AssetCategoryLocalService
uuid
- the UUID of asset category to getgroupId
- the group id of the asset category to get
PortalException
- if a asset category with the UUID and group id could not be found
SystemException
- if a system exception occurredpublic List<AssetCategory> getAssetCategories(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.
getAssetCategories
in interface AssetCategoryLocalService
start
- the lower bound of the range of asset categories to returnend
- the upper bound of the range of asset categories to return (not inclusive)
SystemException
- if a system exception occurredpublic int getAssetCategoriesCount() throws SystemException
getAssetCategoriesCount
in interface AssetCategoryLocalService
SystemException
- if a system exception occurredpublic AssetCategory updateAssetCategory(AssetCategory assetCategory) throws SystemException
updateAssetCategory
in interface AssetCategoryLocalService
assetCategory
- the asset category to update
SystemException
- if a system exception occurredpublic AssetCategory updateAssetCategory(AssetCategory assetCategory, boolean merge) throws SystemException
updateAssetCategory
in interface AssetCategoryLocalService
assetCategory
- the asset category to updatemerge
- whether to merge the asset category 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 AssetCategory addCategory(long userId, long parentCategoryId, Map<Locale,String> titleMap, long vocabularyId, String[] categoryProperties, ServiceContext serviceContext) throws PortalException, SystemException
addCategory
in interface AssetCategoryLocalService
PortalException
SystemException
public void addCategoryResources(AssetCategory category, boolean addCommunityPermissions, boolean addGuestPermissions) throws PortalException, SystemException
addCategoryResources
in interface AssetCategoryLocalService
PortalException
SystemException
public void addCategoryResources(AssetCategory category, String[] communityPermissions, String[] guestPermissions) throws PortalException, SystemException
addCategoryResources
in interface AssetCategoryLocalService
PortalException
SystemException
public void deleteCategory(AssetCategory category) throws PortalException, SystemException
deleteCategory
in interface AssetCategoryLocalService
PortalException
SystemException
public void deleteCategory(long categoryId) throws PortalException, SystemException
deleteCategory
in interface AssetCategoryLocalService
PortalException
SystemException
public void deleteVocabularyCategories(long vocabularyId) throws PortalException, SystemException
deleteVocabularyCategories
in interface AssetCategoryLocalService
PortalException
SystemException
public List<AssetCategory> getCategories() throws SystemException
getCategories
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getCategories(long classNameId, long classPK) throws SystemException
getCategories
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getCategories(String className, long classPK) throws SystemException
getCategories
in interface AssetCategoryLocalService
SystemException
public AssetCategory getCategory(long categoryId) throws PortalException, SystemException
getCategory
in interface AssetCategoryLocalService
PortalException
SystemException
public long[] getCategoryIds(String className, long classPK) throws SystemException
getCategoryIds
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getChildCategories(long parentCategoryId, int start, int end, OrderByComparator obc) throws SystemException
getChildCategories
in interface AssetCategoryLocalService
SystemException
public int getChildCategoriesCount(long parentCategoryId) throws SystemException
getChildCategoriesCount
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getEntryCategories(long entryId) throws SystemException
getEntryCategories
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getVocabularyCategories(long vocabularyId, int start, int end, OrderByComparator obc) throws SystemException
getVocabularyCategories
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getVocabularyCategories(long parentCategoryId, long vocabularyId, int start, int end, OrderByComparator obc) throws SystemException
getVocabularyCategories
in interface AssetCategoryLocalService
SystemException
public List<AssetCategory> getVocabularyRootCategories(long vocabularyId, int start, int end, OrderByComparator obc) throws SystemException
getVocabularyRootCategories
in interface AssetCategoryLocalService
SystemException
public void mergeCategories(long fromCategoryId, long toCategoryId) throws PortalException, SystemException
mergeCategories
in interface AssetCategoryLocalService
PortalException
SystemException
public JSONArray search(long groupId, String name, String[] categoryProperties, int start, int end) throws SystemException
search
in interface AssetCategoryLocalService
SystemException
public AssetCategory updateCategory(long userId, long categoryId, long parentCategoryId, Map<Locale,String> titleMap, long vocabularyId, String[] categoryProperties, ServiceContext serviceContext) throws PortalException, SystemException
updateCategory
in interface AssetCategoryLocalService
PortalException
SystemException
public AssetCategoryLocalService getWrappedAssetCategoryLocalService()
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |