1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.tags.service;
16  
17  /**
18   * <a href="TagsPropertyLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link TagsPropertyLocalService}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       TagsPropertyLocalService
31   * @generated
32   */
33  public class TagsPropertyLocalServiceWrapper implements TagsPropertyLocalService {
34      public TagsPropertyLocalServiceWrapper(
35          TagsPropertyLocalService tagsPropertyLocalService) {
36          _tagsPropertyLocalService = tagsPropertyLocalService;
37      }
38  
39      public com.liferay.portlet.tags.model.TagsProperty addTagsProperty(
40          com.liferay.portlet.tags.model.TagsProperty tagsProperty)
41          throws com.liferay.portal.SystemException {
42          return _tagsPropertyLocalService.addTagsProperty(tagsProperty);
43      }
44  
45      public com.liferay.portlet.tags.model.TagsProperty createTagsProperty(
46          long propertyId) {
47          return _tagsPropertyLocalService.createTagsProperty(propertyId);
48      }
49  
50      public void deleteTagsProperty(long propertyId)
51          throws com.liferay.portal.PortalException,
52              com.liferay.portal.SystemException {
53          _tagsPropertyLocalService.deleteTagsProperty(propertyId);
54      }
55  
56      public void deleteTagsProperty(
57          com.liferay.portlet.tags.model.TagsProperty tagsProperty)
58          throws com.liferay.portal.SystemException {
59          _tagsPropertyLocalService.deleteTagsProperty(tagsProperty);
60      }
61  
62      @SuppressWarnings("rawtypes")
63      public java.util.List dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.SystemException {
66          return _tagsPropertyLocalService.dynamicQuery(dynamicQuery);
67      }
68  
69      @SuppressWarnings("rawtypes")
70      public java.util.List dynamicQuery(
71          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72          int end) throws com.liferay.portal.SystemException {
73          return _tagsPropertyLocalService.dynamicQuery(dynamicQuery, start, end);
74      }
75  
76      @SuppressWarnings("rawtypes")
77      public java.util.List dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end,
80          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81          throws com.liferay.portal.SystemException {
82          return _tagsPropertyLocalService.dynamicQuery(dynamicQuery, start, end,
83              orderByComparator);
84      }
85  
86      public int dynamicQueryCount(
87          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88          throws com.liferay.portal.SystemException {
89          return _tagsPropertyLocalService.dynamicQueryCount(dynamicQuery);
90      }
91  
92      public com.liferay.portlet.tags.model.TagsProperty getTagsProperty(
93          long propertyId)
94          throws com.liferay.portal.PortalException,
95              com.liferay.portal.SystemException {
96          return _tagsPropertyLocalService.getTagsProperty(propertyId);
97      }
98  
99      public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getTagsProperties(
100         int start, int end) throws com.liferay.portal.SystemException {
101         return _tagsPropertyLocalService.getTagsProperties(start, end);
102     }
103 
104     public int getTagsPropertiesCount()
105         throws com.liferay.portal.SystemException {
106         return _tagsPropertyLocalService.getTagsPropertiesCount();
107     }
108 
109     public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
110         com.liferay.portlet.tags.model.TagsProperty tagsProperty)
111         throws com.liferay.portal.SystemException {
112         return _tagsPropertyLocalService.updateTagsProperty(tagsProperty);
113     }
114 
115     public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
116         com.liferay.portlet.tags.model.TagsProperty tagsProperty, boolean merge)
117         throws com.liferay.portal.SystemException {
118         return _tagsPropertyLocalService.updateTagsProperty(tagsProperty, merge);
119     }
120 
121     public com.liferay.portlet.tags.model.TagsProperty addProperty(
122         long userId, long entryId, java.lang.String key, java.lang.String value)
123         throws com.liferay.portal.PortalException,
124             com.liferay.portal.SystemException {
125         return _tagsPropertyLocalService.addProperty(userId, entryId, key, value);
126     }
127 
128     public void deleteProperties(long entryId)
129         throws com.liferay.portal.SystemException {
130         _tagsPropertyLocalService.deleteProperties(entryId);
131     }
132 
133     public void deleteProperty(long propertyId)
134         throws com.liferay.portal.PortalException,
135             com.liferay.portal.SystemException {
136         _tagsPropertyLocalService.deleteProperty(propertyId);
137     }
138 
139     public void deleteProperty(
140         com.liferay.portlet.tags.model.TagsProperty property)
141         throws com.liferay.portal.SystemException {
142         _tagsPropertyLocalService.deleteProperty(property);
143     }
144 
145     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties()
146         throws com.liferay.portal.SystemException {
147         return _tagsPropertyLocalService.getProperties();
148     }
149 
150     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
151         long entryId) throws com.liferay.portal.SystemException {
152         return _tagsPropertyLocalService.getProperties(entryId);
153     }
154 
155     public com.liferay.portlet.tags.model.TagsProperty getProperty(
156         long propertyId)
157         throws com.liferay.portal.PortalException,
158             com.liferay.portal.SystemException {
159         return _tagsPropertyLocalService.getProperty(propertyId);
160     }
161 
162     public com.liferay.portlet.tags.model.TagsProperty getProperty(
163         long entryId, java.lang.String key)
164         throws com.liferay.portal.PortalException,
165             com.liferay.portal.SystemException {
166         return _tagsPropertyLocalService.getProperty(entryId, key);
167     }
168 
169     public java.lang.String[] getPropertyKeys(long groupId)
170         throws com.liferay.portal.SystemException {
171         return _tagsPropertyLocalService.getPropertyKeys(groupId);
172     }
173 
174     public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
175         long groupId, java.lang.String key)
176         throws com.liferay.portal.SystemException {
177         return _tagsPropertyLocalService.getPropertyValues(groupId, key);
178     }
179 
180     public com.liferay.portlet.tags.model.TagsProperty updateProperty(
181         long propertyId, java.lang.String key, java.lang.String value)
182         throws com.liferay.portal.PortalException,
183             com.liferay.portal.SystemException {
184         return _tagsPropertyLocalService.updateProperty(propertyId, key, value);
185     }
186 
187     public TagsPropertyLocalService getWrappedTagsPropertyLocalService() {
188         return _tagsPropertyLocalService;
189     }
190 
191     private TagsPropertyLocalService _tagsPropertyLocalService;
192 }