001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.kernel.annotation.Isolation;
018 import com.liferay.portal.kernel.annotation.Propagation;
019 import com.liferay.portal.kernel.annotation.Transactional;
020 import com.liferay.portal.kernel.exception.PortalException;
021 import com.liferay.portal.kernel.exception.SystemException;
022
023
040 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
041 PortalException.class, SystemException.class})
042 public interface AssetCategoryPropertyLocalService {
043 public com.liferay.portlet.asset.model.AssetCategoryProperty addAssetCategoryProperty(
044 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
045 throws com.liferay.portal.kernel.exception.SystemException;
046
047 public com.liferay.portlet.asset.model.AssetCategoryProperty createAssetCategoryProperty(
048 long categoryPropertyId);
049
050 public void deleteAssetCategoryProperty(long categoryPropertyId)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException;
053
054 public void deleteAssetCategoryProperty(
055 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
056 throws com.liferay.portal.kernel.exception.SystemException;
057
058 @SuppressWarnings("unchecked")
059 public java.util.List dynamicQuery(
060 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
061 throws com.liferay.portal.kernel.exception.SystemException;
062
063 @SuppressWarnings("unchecked")
064 public java.util.List dynamicQuery(
065 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066 int end) throws com.liferay.portal.kernel.exception.SystemException;
067
068 @SuppressWarnings("unchecked")
069 public java.util.List dynamicQuery(
070 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
071 int end,
072 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
073 throws com.liferay.portal.kernel.exception.SystemException;
074
075 public long dynamicQueryCount(
076 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
077 throws com.liferay.portal.kernel.exception.SystemException;
078
079 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
080 public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
081 long categoryPropertyId)
082 throws com.liferay.portal.kernel.exception.PortalException,
083 com.liferay.portal.kernel.exception.SystemException;
084
085 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
086 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
087 int start, int end)
088 throws com.liferay.portal.kernel.exception.SystemException;
089
090 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
091 public int getAssetCategoryPropertiesCount()
092 throws com.liferay.portal.kernel.exception.SystemException;
093
094 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
095 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
096 throws com.liferay.portal.kernel.exception.SystemException;
097
098 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
099 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
100 boolean merge)
101 throws com.liferay.portal.kernel.exception.SystemException;
102
103 public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
104 long userId, long categoryId, java.lang.String key,
105 java.lang.String value)
106 throws com.liferay.portal.kernel.exception.PortalException,
107 com.liferay.portal.kernel.exception.SystemException;
108
109 public void deleteCategoryProperties(long entryId)
110 throws com.liferay.portal.kernel.exception.SystemException;
111
112 public void deleteCategoryProperty(
113 com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
114 throws com.liferay.portal.kernel.exception.SystemException;
115
116 public void deleteCategoryProperty(long categoryPropertyId)
117 throws com.liferay.portal.kernel.exception.PortalException,
118 com.liferay.portal.kernel.exception.SystemException;
119
120 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
121 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
122 throws com.liferay.portal.kernel.exception.SystemException;
123
124 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
125 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
126 long entryId)
127 throws com.liferay.portal.kernel.exception.SystemException;
128
129 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
130 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
131 long categoryPropertyId)
132 throws com.liferay.portal.kernel.exception.PortalException,
133 com.liferay.portal.kernel.exception.SystemException;
134
135 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
136 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
137 long categoryId, java.lang.String key)
138 throws com.liferay.portal.kernel.exception.PortalException,
139 com.liferay.portal.kernel.exception.SystemException;
140
141 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
142 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
143 long groupId, java.lang.String key)
144 throws com.liferay.portal.kernel.exception.SystemException;
145
146 public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
147 long categoryPropertyId, java.lang.String key, java.lang.String value)
148 throws com.liferay.portal.kernel.exception.PortalException,
149 com.liferay.portal.kernel.exception.SystemException;
150 }