1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.tags.service;
24  
25  
26  /**
27   * <a href="TagsPropertyLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link TagsPropertyLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       TagsPropertyLocalService
40   * @generated
41   */
42  public class TagsPropertyLocalServiceWrapper implements TagsPropertyLocalService {
43      public TagsPropertyLocalServiceWrapper(
44          TagsPropertyLocalService tagsPropertyLocalService) {
45          _tagsPropertyLocalService = tagsPropertyLocalService;
46      }
47  
48      public com.liferay.portlet.tags.model.TagsProperty addTagsProperty(
49          com.liferay.portlet.tags.model.TagsProperty tagsProperty)
50          throws com.liferay.portal.SystemException {
51          return _tagsPropertyLocalService.addTagsProperty(tagsProperty);
52      }
53  
54      public com.liferay.portlet.tags.model.TagsProperty createTagsProperty(
55          long propertyId) {
56          return _tagsPropertyLocalService.createTagsProperty(propertyId);
57      }
58  
59      public void deleteTagsProperty(long propertyId)
60          throws com.liferay.portal.PortalException,
61              com.liferay.portal.SystemException {
62          _tagsPropertyLocalService.deleteTagsProperty(propertyId);
63      }
64  
65      public void deleteTagsProperty(
66          com.liferay.portlet.tags.model.TagsProperty tagsProperty)
67          throws com.liferay.portal.SystemException {
68          _tagsPropertyLocalService.deleteTagsProperty(tagsProperty);
69      }
70  
71      public java.util.List<Object> dynamicQuery(
72          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73          throws com.liferay.portal.SystemException {
74          return _tagsPropertyLocalService.dynamicQuery(dynamicQuery);
75      }
76  
77      public java.util.List<Object> dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end) throws com.liferay.portal.SystemException {
80          return _tagsPropertyLocalService.dynamicQuery(dynamicQuery, start, end);
81      }
82  
83      public com.liferay.portlet.tags.model.TagsProperty getTagsProperty(
84          long propertyId)
85          throws com.liferay.portal.PortalException,
86              com.liferay.portal.SystemException {
87          return _tagsPropertyLocalService.getTagsProperty(propertyId);
88      }
89  
90      public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getTagsProperties(
91          int start, int end) throws com.liferay.portal.SystemException {
92          return _tagsPropertyLocalService.getTagsProperties(start, end);
93      }
94  
95      public int getTagsPropertiesCount()
96          throws com.liferay.portal.SystemException {
97          return _tagsPropertyLocalService.getTagsPropertiesCount();
98      }
99  
100     public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
101         com.liferay.portlet.tags.model.TagsProperty tagsProperty)
102         throws com.liferay.portal.SystemException {
103         return _tagsPropertyLocalService.updateTagsProperty(tagsProperty);
104     }
105 
106     public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
107         com.liferay.portlet.tags.model.TagsProperty tagsProperty, boolean merge)
108         throws com.liferay.portal.SystemException {
109         return _tagsPropertyLocalService.updateTagsProperty(tagsProperty, merge);
110     }
111 
112     public com.liferay.portlet.tags.model.TagsProperty addProperty(
113         long userId, long entryId, java.lang.String key, java.lang.String value)
114         throws com.liferay.portal.PortalException,
115             com.liferay.portal.SystemException {
116         return _tagsPropertyLocalService.addProperty(userId, entryId, key, value);
117     }
118 
119     public void deleteProperties(long entryId)
120         throws com.liferay.portal.SystemException {
121         _tagsPropertyLocalService.deleteProperties(entryId);
122     }
123 
124     public void deleteProperty(long propertyId)
125         throws com.liferay.portal.PortalException,
126             com.liferay.portal.SystemException {
127         _tagsPropertyLocalService.deleteProperty(propertyId);
128     }
129 
130     public void deleteProperty(
131         com.liferay.portlet.tags.model.TagsProperty property)
132         throws com.liferay.portal.SystemException {
133         _tagsPropertyLocalService.deleteProperty(property);
134     }
135 
136     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties()
137         throws com.liferay.portal.SystemException {
138         return _tagsPropertyLocalService.getProperties();
139     }
140 
141     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
142         long entryId) throws com.liferay.portal.SystemException {
143         return _tagsPropertyLocalService.getProperties(entryId);
144     }
145 
146     public com.liferay.portlet.tags.model.TagsProperty getProperty(
147         long propertyId)
148         throws com.liferay.portal.PortalException,
149             com.liferay.portal.SystemException {
150         return _tagsPropertyLocalService.getProperty(propertyId);
151     }
152 
153     public com.liferay.portlet.tags.model.TagsProperty getProperty(
154         long entryId, java.lang.String key)
155         throws com.liferay.portal.PortalException,
156             com.liferay.portal.SystemException {
157         return _tagsPropertyLocalService.getProperty(entryId, key);
158     }
159 
160     public java.lang.String[] getPropertyKeys(long groupId)
161         throws com.liferay.portal.SystemException {
162         return _tagsPropertyLocalService.getPropertyKeys(groupId);
163     }
164 
165     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
166         long groupId, java.lang.String key)
167         throws com.liferay.portal.SystemException {
168         return _tagsPropertyLocalService.getPropertyValues(groupId, key);
169     }
170 
171     public com.liferay.portlet.tags.model.TagsProperty updateProperty(
172         long propertyId, java.lang.String key, java.lang.String value)
173         throws com.liferay.portal.PortalException,
174             com.liferay.portal.SystemException {
175         return _tagsPropertyLocalService.updateProperty(propertyId, key, value);
176     }
177 
178     public TagsPropertyLocalService getWrappedTagsPropertyLocalService() {
179         return _tagsPropertyLocalService;
180     }
181 
182     private TagsPropertyLocalService _tagsPropertyLocalService;
183 }