1
14
15 package com.liferay.portlet.tags.service;
16
17
18
34 public class TagsPropertyLocalServiceWrapper implements TagsPropertyLocalService {
35 public TagsPropertyLocalServiceWrapper(
36 TagsPropertyLocalService tagsPropertyLocalService) {
37 _tagsPropertyLocalService = tagsPropertyLocalService;
38 }
39
40 public com.liferay.portlet.tags.model.TagsProperty addTagsProperty(
41 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
42 throws com.liferay.portal.SystemException {
43 return _tagsPropertyLocalService.addTagsProperty(tagsProperty);
44 }
45
46 public com.liferay.portlet.tags.model.TagsProperty createTagsProperty(
47 long propertyId) {
48 return _tagsPropertyLocalService.createTagsProperty(propertyId);
49 }
50
51 public void deleteTagsProperty(long propertyId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _tagsPropertyLocalService.deleteTagsProperty(propertyId);
55 }
56
57 public void deleteTagsProperty(
58 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
59 throws com.liferay.portal.SystemException {
60 _tagsPropertyLocalService.deleteTagsProperty(tagsProperty);
61 }
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _tagsPropertyLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 public java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException {
72 return _tagsPropertyLocalService.dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public com.liferay.portlet.tags.model.TagsProperty getTagsProperty(
76 long propertyId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return _tagsPropertyLocalService.getTagsProperty(propertyId);
80 }
81
82 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getTagsProperties(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return _tagsPropertyLocalService.getTagsProperties(start, end);
85 }
86
87 public int getTagsPropertiesCount()
88 throws com.liferay.portal.SystemException {
89 return _tagsPropertyLocalService.getTagsPropertiesCount();
90 }
91
92 public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
93 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
94 throws com.liferay.portal.SystemException {
95 return _tagsPropertyLocalService.updateTagsProperty(tagsProperty);
96 }
97
98 public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
99 com.liferay.portlet.tags.model.TagsProperty tagsProperty, boolean merge)
100 throws com.liferay.portal.SystemException {
101 return _tagsPropertyLocalService.updateTagsProperty(tagsProperty, merge);
102 }
103
104 public com.liferay.portlet.tags.model.TagsProperty addProperty(
105 long userId, long entryId, java.lang.String key, java.lang.String value)
106 throws com.liferay.portal.PortalException,
107 com.liferay.portal.SystemException {
108 return _tagsPropertyLocalService.addProperty(userId, entryId, key, value);
109 }
110
111 public com.liferay.portlet.tags.model.TagsProperty addProperty(
112 long userId, java.lang.String entryName, java.lang.String key,
113 java.lang.String value)
114 throws com.liferay.portal.PortalException,
115 com.liferay.portal.SystemException {
116 return _tagsPropertyLocalService.addProperty(userId, entryName, key,
117 value);
118 }
119
120 public void deleteProperties(long entryId)
121 throws com.liferay.portal.SystemException {
122 _tagsPropertyLocalService.deleteProperties(entryId);
123 }
124
125 public void deleteProperty(long propertyId)
126 throws com.liferay.portal.PortalException,
127 com.liferay.portal.SystemException {
128 _tagsPropertyLocalService.deleteProperty(propertyId);
129 }
130
131 public void deleteProperty(
132 com.liferay.portlet.tags.model.TagsProperty property)
133 throws com.liferay.portal.SystemException {
134 _tagsPropertyLocalService.deleteProperty(property);
135 }
136
137 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties()
138 throws com.liferay.portal.SystemException {
139 return _tagsPropertyLocalService.getProperties();
140 }
141
142 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
143 long entryId) throws com.liferay.portal.SystemException {
144 return _tagsPropertyLocalService.getProperties(entryId);
145 }
146
147 public com.liferay.portlet.tags.model.TagsProperty getProperty(
148 long propertyId)
149 throws com.liferay.portal.PortalException,
150 com.liferay.portal.SystemException {
151 return _tagsPropertyLocalService.getProperty(propertyId);
152 }
153
154 public com.liferay.portlet.tags.model.TagsProperty getProperty(
155 long entryId, java.lang.String key)
156 throws com.liferay.portal.PortalException,
157 com.liferay.portal.SystemException {
158 return _tagsPropertyLocalService.getProperty(entryId, key);
159 }
160
161 public java.lang.String[] getPropertyKeys(long companyId)
162 throws com.liferay.portal.SystemException {
163 return _tagsPropertyLocalService.getPropertyKeys(companyId);
164 }
165
166 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
167 long companyId, java.lang.String key)
168 throws com.liferay.portal.SystemException {
169 return _tagsPropertyLocalService.getPropertyValues(companyId, key);
170 }
171
172 public com.liferay.portlet.tags.model.TagsProperty updateProperty(
173 long propertyId, java.lang.String key, java.lang.String value)
174 throws com.liferay.portal.PortalException,
175 com.liferay.portal.SystemException {
176 return _tagsPropertyLocalService.updateProperty(propertyId, key, value);
177 }
178
179 public TagsPropertyLocalService getWrappedTagsPropertyLocalService() {
180 return _tagsPropertyLocalService;
181 }
182
183 private TagsPropertyLocalService _tagsPropertyLocalService;
184 }