|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface AssetCategoryPropertyLocalService
The interface for the asset category property local service.
Never modify or reference this interface directly. Always use AssetCategoryPropertyLocalServiceUtil
to access the asset category property local service. Add custom service methods to AssetCategoryPropertyLocalServiceImpl
and rerun ServiceBuilder to automatically copy the method declarations to this interface.
This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
AssetCategoryPropertyLocalServiceUtil
,
AssetCategoryPropertyLocalServiceBaseImpl
,
AssetCategoryPropertyLocalServiceImpl
Method Summary | |
---|---|
AssetCategoryProperty |
addAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
Adds the asset category property to the database. |
AssetCategoryProperty |
addCategoryProperty(long userId,
long categoryId,
String key,
String value)
|
AssetCategoryProperty |
createAssetCategoryProperty(long categoryPropertyId)
Creates a new asset category property with the primary key. |
void |
deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
Deletes the asset category property from the database. |
void |
deleteAssetCategoryProperty(long categoryPropertyId)
Deletes the asset category property with the primary key from the database. |
void |
deleteCategoryProperties(long entryId)
|
void |
deleteCategoryProperty(AssetCategoryProperty categoryProperty)
|
void |
deleteCategoryProperty(long categoryPropertyId)
|
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<AssetCategoryProperty> |
getAssetCategoryProperties(int start,
int end)
Gets a range of all the asset category properties. |
int |
getAssetCategoryPropertiesCount()
Gets the number of asset category properties. |
AssetCategoryProperty |
getAssetCategoryProperty(long categoryPropertyId)
Gets the asset category property with the primary key. |
List<AssetCategoryProperty> |
getCategoryProperties()
|
List<AssetCategoryProperty> |
getCategoryProperties(long entryId)
|
AssetCategoryProperty |
getCategoryProperty(long categoryPropertyId)
|
AssetCategoryProperty |
getCategoryProperty(long categoryId,
String key)
|
List<AssetCategoryProperty> |
getCategoryPropertyValues(long groupId,
String key)
|
AssetCategoryProperty |
updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
Updates the asset category property in the database. |
AssetCategoryProperty |
updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty,
boolean merge)
Updates the asset category property in the database. |
AssetCategoryProperty |
updateCategoryProperty(long categoryPropertyId,
String key,
String value)
|
Method Detail |
---|
AssetCategoryProperty addAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty) throws SystemException
assetCategoryProperty
- the asset category property to add
SystemException
- if a system exception occurredAssetCategoryProperty createAssetCategoryProperty(long categoryPropertyId)
categoryPropertyId
- the primary key for the new asset category property
void deleteAssetCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
categoryPropertyId
- the primary key of the asset category property to delete
PortalException
- if a asset category property with the primary key could not be found
SystemException
- if a system exception occurredvoid deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty) throws SystemException
assetCategoryProperty
- the asset category property to delete
SystemException
- if a system exception occurredList dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredList 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
- 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 occurredList 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
- 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 occurredlong dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) AssetCategoryProperty getAssetCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
categoryPropertyId
- the primary key of the asset category property to get
PortalException
- if a asset category property with the primary key could not be found
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) List<AssetCategoryProperty> getAssetCategoryProperties(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.
start
- the lower bound of the range of asset category properties to returnend
- the upper bound of the range of asset category properties to return (not inclusive)
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) int getAssetCategoryPropertiesCount() throws SystemException
SystemException
- if a system exception occurredAssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty) throws SystemException
assetCategoryProperty
- the asset category property to update
SystemException
- if a system exception occurredAssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty, boolean merge) throws SystemException
assetCategoryProperty
- the asset category property to updatemerge
- whether to merge the asset category property 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 occurredAssetCategoryProperty addCategoryProperty(long userId, long categoryId, String key, String value) throws PortalException, SystemException
PortalException
SystemException
void deleteCategoryProperties(long entryId) throws SystemException
SystemException
void deleteCategoryProperty(AssetCategoryProperty categoryProperty) throws SystemException
SystemException
void deleteCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<AssetCategoryProperty> getCategoryProperties() throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<AssetCategoryProperty> getCategoryProperties(long entryId) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) AssetCategoryProperty getCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) AssetCategoryProperty getCategoryProperty(long categoryId, String key) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<AssetCategoryProperty> getCategoryPropertyValues(long groupId, String key) throws SystemException
SystemException
AssetCategoryProperty updateCategoryProperty(long categoryPropertyId, String key, String value) throws PortalException, SystemException
PortalException
SystemException
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |