1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.tags.service;
16  
17  
18  /**
19   * <a href="TagsPropertyLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link TagsPropertyLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       TagsPropertyLocalService
32   * @generated
33   */
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 java.util.List<Object> dynamicQuery(
76          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77          int end,
78          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79          throws com.liferay.portal.SystemException {
80          return _tagsPropertyLocalService.dynamicQuery(dynamicQuery, start, end,
81              orderByComparator);
82      }
83  
84      public int dynamicQueryCount(
85          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86          throws com.liferay.portal.SystemException {
87          return _tagsPropertyLocalService.dynamicQueryCount(dynamicQuery);
88      }
89  
90      public com.liferay.portlet.tags.model.TagsProperty getTagsProperty(
91          long propertyId)
92          throws com.liferay.portal.PortalException,
93              com.liferay.portal.SystemException {
94          return _tagsPropertyLocalService.getTagsProperty(propertyId);
95      }
96  
97      public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getTagsProperties(
98          int start, int end) throws com.liferay.portal.SystemException {
99          return _tagsPropertyLocalService.getTagsProperties(start, end);
100     }
101 
102     public int getTagsPropertiesCount()
103         throws com.liferay.portal.SystemException {
104         return _tagsPropertyLocalService.getTagsPropertiesCount();
105     }
106 
107     public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
108         com.liferay.portlet.tags.model.TagsProperty tagsProperty)
109         throws com.liferay.portal.SystemException {
110         return _tagsPropertyLocalService.updateTagsProperty(tagsProperty);
111     }
112 
113     public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
114         com.liferay.portlet.tags.model.TagsProperty tagsProperty, boolean merge)
115         throws com.liferay.portal.SystemException {
116         return _tagsPropertyLocalService.updateTagsProperty(tagsProperty, merge);
117     }
118 
119     public com.liferay.portlet.tags.model.TagsProperty addProperty(
120         long userId, long entryId, java.lang.String key, java.lang.String value)
121         throws com.liferay.portal.PortalException,
122             com.liferay.portal.SystemException {
123         return _tagsPropertyLocalService.addProperty(userId, entryId, key, value);
124     }
125 
126     public void deleteProperties(long entryId)
127         throws com.liferay.portal.SystemException {
128         _tagsPropertyLocalService.deleteProperties(entryId);
129     }
130 
131     public void deleteProperty(long propertyId)
132         throws com.liferay.portal.PortalException,
133             com.liferay.portal.SystemException {
134         _tagsPropertyLocalService.deleteProperty(propertyId);
135     }
136 
137     public void deleteProperty(
138         com.liferay.portlet.tags.model.TagsProperty property)
139         throws com.liferay.portal.SystemException {
140         _tagsPropertyLocalService.deleteProperty(property);
141     }
142 
143     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties()
144         throws com.liferay.portal.SystemException {
145         return _tagsPropertyLocalService.getProperties();
146     }
147 
148     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
149         long entryId) throws com.liferay.portal.SystemException {
150         return _tagsPropertyLocalService.getProperties(entryId);
151     }
152 
153     public com.liferay.portlet.tags.model.TagsProperty getProperty(
154         long propertyId)
155         throws com.liferay.portal.PortalException,
156             com.liferay.portal.SystemException {
157         return _tagsPropertyLocalService.getProperty(propertyId);
158     }
159 
160     public com.liferay.portlet.tags.model.TagsProperty getProperty(
161         long entryId, java.lang.String key)
162         throws com.liferay.portal.PortalException,
163             com.liferay.portal.SystemException {
164         return _tagsPropertyLocalService.getProperty(entryId, key);
165     }
166 
167     public java.lang.String[] getPropertyKeys(long groupId)
168         throws com.liferay.portal.SystemException {
169         return _tagsPropertyLocalService.getPropertyKeys(groupId);
170     }
171 
172     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
173         long groupId, java.lang.String key)
174         throws com.liferay.portal.SystemException {
175         return _tagsPropertyLocalService.getPropertyValues(groupId, key);
176     }
177 
178     public com.liferay.portlet.tags.model.TagsProperty updateProperty(
179         long propertyId, java.lang.String key, java.lang.String value)
180         throws com.liferay.portal.PortalException,
181             com.liferay.portal.SystemException {
182         return _tagsPropertyLocalService.updateProperty(propertyId, key, value);
183     }
184 
185     public TagsPropertyLocalService getWrappedTagsPropertyLocalService() {
186         return _tagsPropertyLocalService;
187     }
188 
189     private TagsPropertyLocalService _tagsPropertyLocalService;
190 }