001 /** 002 * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. 003 * 004 * This library is free software; you can redistribute it and/or modify it under 005 * the terms of the GNU Lesser General Public License as published by the Free 006 * Software Foundation; either version 2.1 of the License, or (at your option) 007 * any later version. 008 * 009 * This library is distributed in the hope that it will be useful, but WITHOUT 010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 012 * details. 013 */ 014 015 package com.liferay.portal.service; 016 017 /** 018 * <p> 019 * This class is a wrapper for {@link RepositoryEntryLocalService}. 020 * </p> 021 * 022 * @author Brian Wing Shun Chan 023 * @see RepositoryEntryLocalService 024 * @generated 025 */ 026 public class RepositoryEntryLocalServiceWrapper 027 implements RepositoryEntryLocalService { 028 public RepositoryEntryLocalServiceWrapper( 029 RepositoryEntryLocalService repositoryEntryLocalService) { 030 _repositoryEntryLocalService = repositoryEntryLocalService; 031 } 032 033 /** 034 * Adds the repository entry to the database. Also notifies the appropriate model listeners. 035 * 036 * @param repositoryEntry the repository entry 037 * @return the repository entry that was added 038 * @throws SystemException if a system exception occurred 039 */ 040 public com.liferay.portal.model.RepositoryEntry addRepositoryEntry( 041 com.liferay.portal.model.RepositoryEntry repositoryEntry) 042 throws com.liferay.portal.kernel.exception.SystemException { 043 return _repositoryEntryLocalService.addRepositoryEntry(repositoryEntry); 044 } 045 046 /** 047 * Creates a new repository entry with the primary key. Does not add the repository entry to the database. 048 * 049 * @param repositoryEntryId the primary key for the new repository entry 050 * @return the new repository entry 051 */ 052 public com.liferay.portal.model.RepositoryEntry createRepositoryEntry( 053 long repositoryEntryId) { 054 return _repositoryEntryLocalService.createRepositoryEntry(repositoryEntryId); 055 } 056 057 /** 058 * Deletes the repository entry with the primary key from the database. Also notifies the appropriate model listeners. 059 * 060 * @param repositoryEntryId the primary key of the repository entry 061 * @throws PortalException if a repository entry with the primary key could not be found 062 * @throws SystemException if a system exception occurred 063 */ 064 public void deleteRepositoryEntry(long repositoryEntryId) 065 throws com.liferay.portal.kernel.exception.PortalException, 066 com.liferay.portal.kernel.exception.SystemException { 067 _repositoryEntryLocalService.deleteRepositoryEntry(repositoryEntryId); 068 } 069 070 /** 071 * Deletes the repository entry from the database. Also notifies the appropriate model listeners. 072 * 073 * @param repositoryEntry the repository entry 074 * @throws SystemException if a system exception occurred 075 */ 076 public void deleteRepositoryEntry( 077 com.liferay.portal.model.RepositoryEntry repositoryEntry) 078 throws com.liferay.portal.kernel.exception.SystemException { 079 _repositoryEntryLocalService.deleteRepositoryEntry(repositoryEntry); 080 } 081 082 /** 083 * Performs a dynamic query on the database and returns the matching rows. 084 * 085 * @param dynamicQuery the dynamic query 086 * @return the matching rows 087 * @throws SystemException if a system exception occurred 088 */ 089 @SuppressWarnings("rawtypes") 090 public java.util.List dynamicQuery( 091 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) 092 throws com.liferay.portal.kernel.exception.SystemException { 093 return _repositoryEntryLocalService.dynamicQuery(dynamicQuery); 094 } 095 096 /** 097 * Performs a dynamic query on the database and returns a range of the matching rows. 098 * 099 * <p> 100 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 101 * </p> 102 * 103 * @param dynamicQuery the dynamic query 104 * @param start the lower bound of the range of model instances 105 * @param end the upper bound of the range of model instances (not inclusive) 106 * @return the range of matching rows 107 * @throws SystemException if a system exception occurred 108 */ 109 @SuppressWarnings("rawtypes") 110 public java.util.List dynamicQuery( 111 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, 112 int end) throws com.liferay.portal.kernel.exception.SystemException { 113 return _repositoryEntryLocalService.dynamicQuery(dynamicQuery, start, 114 end); 115 } 116 117 /** 118 * Performs a dynamic query on the database and returns an ordered range of the matching rows. 119 * 120 * <p> 121 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 122 * </p> 123 * 124 * @param dynamicQuery the dynamic query 125 * @param start the lower bound of the range of model instances 126 * @param end the upper bound of the range of model instances (not inclusive) 127 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 128 * @return the ordered range of matching rows 129 * @throws SystemException if a system exception occurred 130 */ 131 @SuppressWarnings("rawtypes") 132 public java.util.List dynamicQuery( 133 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, 134 int end, 135 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 136 throws com.liferay.portal.kernel.exception.SystemException { 137 return _repositoryEntryLocalService.dynamicQuery(dynamicQuery, start, 138 end, orderByComparator); 139 } 140 141 /** 142 * Returns the number of rows that match the dynamic query. 143 * 144 * @param dynamicQuery the dynamic query 145 * @return the number of rows that match the dynamic query 146 * @throws SystemException if a system exception occurred 147 */ 148 public long dynamicQueryCount( 149 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) 150 throws com.liferay.portal.kernel.exception.SystemException { 151 return _repositoryEntryLocalService.dynamicQueryCount(dynamicQuery); 152 } 153 154 /** 155 * Returns the repository entry with the primary key. 156 * 157 * @param repositoryEntryId the primary key of the repository entry 158 * @return the repository entry 159 * @throws PortalException if a repository entry with the primary key could not be found 160 * @throws SystemException if a system exception occurred 161 */ 162 public com.liferay.portal.model.RepositoryEntry getRepositoryEntry( 163 long repositoryEntryId) 164 throws com.liferay.portal.kernel.exception.PortalException, 165 com.liferay.portal.kernel.exception.SystemException { 166 return _repositoryEntryLocalService.getRepositoryEntry(repositoryEntryId); 167 } 168 169 public com.liferay.portal.model.PersistedModel getPersistedModel( 170 java.io.Serializable primaryKeyObj) 171 throws com.liferay.portal.kernel.exception.PortalException, 172 com.liferay.portal.kernel.exception.SystemException { 173 return _repositoryEntryLocalService.getPersistedModel(primaryKeyObj); 174 } 175 176 /** 177 * Returns the repository entry with the UUID in the group. 178 * 179 * @param uuid the UUID of repository entry 180 * @param groupId the group id of the repository entry 181 * @return the repository entry 182 * @throws PortalException if a repository entry with the UUID in the group could not be found 183 * @throws SystemException if a system exception occurred 184 */ 185 public com.liferay.portal.model.RepositoryEntry getRepositoryEntryByUuidAndGroupId( 186 java.lang.String uuid, long groupId) 187 throws com.liferay.portal.kernel.exception.PortalException, 188 com.liferay.portal.kernel.exception.SystemException { 189 return _repositoryEntryLocalService.getRepositoryEntryByUuidAndGroupId(uuid, 190 groupId); 191 } 192 193 /** 194 * Returns a range of all the repository entries. 195 * 196 * <p> 197 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 198 * </p> 199 * 200 * @param start the lower bound of the range of repository entries 201 * @param end the upper bound of the range of repository entries (not inclusive) 202 * @return the range of repository entries 203 * @throws SystemException if a system exception occurred 204 */ 205 public java.util.List<com.liferay.portal.model.RepositoryEntry> getRepositoryEntries( 206 int start, int end) 207 throws com.liferay.portal.kernel.exception.SystemException { 208 return _repositoryEntryLocalService.getRepositoryEntries(start, end); 209 } 210 211 /** 212 * Returns the number of repository entries. 213 * 214 * @return the number of repository entries 215 * @throws SystemException if a system exception occurred 216 */ 217 public int getRepositoryEntriesCount() 218 throws com.liferay.portal.kernel.exception.SystemException { 219 return _repositoryEntryLocalService.getRepositoryEntriesCount(); 220 } 221 222 /** 223 * Updates the repository entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. 224 * 225 * @param repositoryEntry the repository entry 226 * @return the repository entry that was updated 227 * @throws SystemException if a system exception occurred 228 */ 229 public com.liferay.portal.model.RepositoryEntry updateRepositoryEntry( 230 com.liferay.portal.model.RepositoryEntry repositoryEntry) 231 throws com.liferay.portal.kernel.exception.SystemException { 232 return _repositoryEntryLocalService.updateRepositoryEntry(repositoryEntry); 233 } 234 235 /** 236 * Updates the repository entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. 237 * 238 * @param repositoryEntry the repository entry 239 * @param merge whether to merge the repository entry with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation. 240 * @return the repository entry that was updated 241 * @throws SystemException if a system exception occurred 242 */ 243 public com.liferay.portal.model.RepositoryEntry updateRepositoryEntry( 244 com.liferay.portal.model.RepositoryEntry repositoryEntry, boolean merge) 245 throws com.liferay.portal.kernel.exception.SystemException { 246 return _repositoryEntryLocalService.updateRepositoryEntry(repositoryEntry, 247 merge); 248 } 249 250 /** 251 * Returns the Spring bean ID for this bean. 252 * 253 * @return the Spring bean ID for this bean 254 */ 255 public java.lang.String getBeanIdentifier() { 256 return _repositoryEntryLocalService.getBeanIdentifier(); 257 } 258 259 /** 260 * Sets the Spring bean ID for this bean. 261 * 262 * @param beanIdentifier the Spring bean ID for this bean 263 */ 264 public void setBeanIdentifier(java.lang.String beanIdentifier) { 265 _repositoryEntryLocalService.setBeanIdentifier(beanIdentifier); 266 } 267 268 public com.liferay.portal.model.RepositoryEntry fetchRepositoryEntry( 269 long repositoryEntryId) 270 throws com.liferay.portal.kernel.exception.SystemException { 271 return _repositoryEntryLocalService.fetchRepositoryEntry(repositoryEntryId); 272 } 273 274 public RepositoryEntryLocalService getWrappedRepositoryEntryLocalService() { 275 return _repositoryEntryLocalService; 276 } 277 278 public void setWrappedRepositoryEntryLocalService( 279 RepositoryEntryLocalService repositoryEntryLocalService) { 280 _repositoryEntryLocalService = repositoryEntryLocalService; 281 } 282 283 private RepositoryEntryLocalService _repositoryEntryLocalService; 284 }