001 /** 002 * Copyright (c) 2000-2013 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.portlet.messageboards.service; 016 017 import aQute.bnd.annotation.ProviderType; 018 019 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil; 020 import com.liferay.portal.kernel.util.ReferenceRegistry; 021 022 /** 023 * Provides the local service utility for MBMailingList. This utility wraps 024 * {@link com.liferay.portlet.messageboards.service.impl.MBMailingListLocalServiceImpl} and is the 025 * primary access point for service operations in application layer code running 026 * on the local server. Methods of this service will not have security checks 027 * based on the propagated JAAS credentials because this service can only be 028 * accessed from within the same VM. 029 * 030 * @author Brian Wing Shun Chan 031 * @see MBMailingListLocalService 032 * @see com.liferay.portlet.messageboards.service.base.MBMailingListLocalServiceBaseImpl 033 * @see com.liferay.portlet.messageboards.service.impl.MBMailingListLocalServiceImpl 034 * @generated 035 */ 036 @ProviderType 037 public class MBMailingListLocalServiceUtil { 038 /* 039 * NOTE FOR DEVELOPERS: 040 * 041 * Never modify this class directly. Add custom service methods to {@link com.liferay.portlet.messageboards.service.impl.MBMailingListLocalServiceImpl} and rerun ServiceBuilder to regenerate this class. 042 */ 043 044 /** 045 * Adds the message boards mailing list to the database. Also notifies the appropriate model listeners. 046 * 047 * @param mbMailingList the message boards mailing list 048 * @return the message boards mailing list that was added 049 * @throws SystemException if a system exception occurred 050 */ 051 public static com.liferay.portlet.messageboards.model.MBMailingList addMBMailingList( 052 com.liferay.portlet.messageboards.model.MBMailingList mbMailingList) 053 throws com.liferay.portal.kernel.exception.SystemException { 054 return getService().addMBMailingList(mbMailingList); 055 } 056 057 /** 058 * Creates a new message boards mailing list with the primary key. Does not add the message boards mailing list to the database. 059 * 060 * @param mailingListId the primary key for the new message boards mailing list 061 * @return the new message boards mailing list 062 */ 063 public static com.liferay.portlet.messageboards.model.MBMailingList createMBMailingList( 064 long mailingListId) { 065 return getService().createMBMailingList(mailingListId); 066 } 067 068 /** 069 * Deletes the message boards mailing list with the primary key from the database. Also notifies the appropriate model listeners. 070 * 071 * @param mailingListId the primary key of the message boards mailing list 072 * @return the message boards mailing list that was removed 073 * @throws PortalException if a message boards mailing list with the primary key could not be found 074 * @throws SystemException if a system exception occurred 075 */ 076 public static com.liferay.portlet.messageboards.model.MBMailingList deleteMBMailingList( 077 long mailingListId) 078 throws com.liferay.portal.kernel.exception.PortalException, 079 com.liferay.portal.kernel.exception.SystemException { 080 return getService().deleteMBMailingList(mailingListId); 081 } 082 083 /** 084 * Deletes the message boards mailing list from the database. Also notifies the appropriate model listeners. 085 * 086 * @param mbMailingList the message boards mailing list 087 * @return the message boards mailing list that was removed 088 * @throws SystemException if a system exception occurred 089 */ 090 public static com.liferay.portlet.messageboards.model.MBMailingList deleteMBMailingList( 091 com.liferay.portlet.messageboards.model.MBMailingList mbMailingList) 092 throws com.liferay.portal.kernel.exception.SystemException { 093 return getService().deleteMBMailingList(mbMailingList); 094 } 095 096 public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() { 097 return getService().dynamicQuery(); 098 } 099 100 /** 101 * Performs a dynamic query on the database and returns the matching rows. 102 * 103 * @param dynamicQuery the dynamic query 104 * @return the matching rows 105 * @throws SystemException if a system exception occurred 106 */ 107 @SuppressWarnings("rawtypes") 108 public static java.util.List dynamicQuery( 109 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) 110 throws com.liferay.portal.kernel.exception.SystemException { 111 return getService().dynamicQuery(dynamicQuery); 112 } 113 114 /** 115 * Performs a dynamic query on the database and returns a range of the matching rows. 116 * 117 * <p> 118 * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. 119 * </p> 120 * 121 * @param dynamicQuery the dynamic query 122 * @param start the lower bound of the range of model instances 123 * @param end the upper bound of the range of model instances (not inclusive) 124 * @return the range of matching rows 125 * @throws SystemException if a system exception occurred 126 */ 127 @SuppressWarnings("rawtypes") 128 public static java.util.List dynamicQuery( 129 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, 130 int end) throws com.liferay.portal.kernel.exception.SystemException { 131 return getService().dynamicQuery(dynamicQuery, start, end); 132 } 133 134 /** 135 * Performs a dynamic query on the database and returns an ordered range of the matching rows. 136 * 137 * <p> 138 * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. 139 * </p> 140 * 141 * @param dynamicQuery the dynamic query 142 * @param start the lower bound of the range of model instances 143 * @param end the upper bound of the range of model instances (not inclusive) 144 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 145 * @return the ordered range of matching rows 146 * @throws SystemException if a system exception occurred 147 */ 148 @SuppressWarnings("rawtypes") 149 public static java.util.List dynamicQuery( 150 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, 151 int end, 152 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 153 throws com.liferay.portal.kernel.exception.SystemException { 154 return getService() 155 .dynamicQuery(dynamicQuery, start, end, orderByComparator); 156 } 157 158 /** 159 * Returns the number of rows that match the dynamic query. 160 * 161 * @param dynamicQuery the dynamic query 162 * @return the number of rows that match the dynamic query 163 * @throws SystemException if a system exception occurred 164 */ 165 public static long dynamicQueryCount( 166 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) 167 throws com.liferay.portal.kernel.exception.SystemException { 168 return getService().dynamicQueryCount(dynamicQuery); 169 } 170 171 /** 172 * Returns the number of rows that match the dynamic query. 173 * 174 * @param dynamicQuery the dynamic query 175 * @param projection the projection to apply to the query 176 * @return the number of rows that match the dynamic query 177 * @throws SystemException if a system exception occurred 178 */ 179 public static long dynamicQueryCount( 180 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, 181 com.liferay.portal.kernel.dao.orm.Projection projection) 182 throws com.liferay.portal.kernel.exception.SystemException { 183 return getService().dynamicQueryCount(dynamicQuery, projection); 184 } 185 186 public static com.liferay.portlet.messageboards.model.MBMailingList fetchMBMailingList( 187 long mailingListId) 188 throws com.liferay.portal.kernel.exception.SystemException { 189 return getService().fetchMBMailingList(mailingListId); 190 } 191 192 /** 193 * Returns the message boards mailing list with the matching UUID and company. 194 * 195 * @param uuid the message boards mailing list's UUID 196 * @param companyId the primary key of the company 197 * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found 198 * @throws SystemException if a system exception occurred 199 */ 200 public static com.liferay.portlet.messageboards.model.MBMailingList fetchMBMailingListByUuidAndCompanyId( 201 java.lang.String uuid, long companyId) 202 throws com.liferay.portal.kernel.exception.SystemException { 203 return getService().fetchMBMailingListByUuidAndCompanyId(uuid, companyId); 204 } 205 206 /** 207 * Returns the message boards mailing list matching the UUID and group. 208 * 209 * @param uuid the message boards mailing list's UUID 210 * @param groupId the primary key of the group 211 * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found 212 * @throws SystemException if a system exception occurred 213 */ 214 public static com.liferay.portlet.messageboards.model.MBMailingList fetchMBMailingListByUuidAndGroupId( 215 java.lang.String uuid, long groupId) 216 throws com.liferay.portal.kernel.exception.SystemException { 217 return getService().fetchMBMailingListByUuidAndGroupId(uuid, groupId); 218 } 219 220 /** 221 * Returns the message boards mailing list with the primary key. 222 * 223 * @param mailingListId the primary key of the message boards mailing list 224 * @return the message boards mailing list 225 * @throws PortalException if a message boards mailing list with the primary key could not be found 226 * @throws SystemException if a system exception occurred 227 */ 228 public static com.liferay.portlet.messageboards.model.MBMailingList getMBMailingList( 229 long mailingListId) 230 throws com.liferay.portal.kernel.exception.PortalException, 231 com.liferay.portal.kernel.exception.SystemException { 232 return getService().getMBMailingList(mailingListId); 233 } 234 235 public static com.liferay.portal.model.PersistedModel getPersistedModel( 236 java.io.Serializable primaryKeyObj) 237 throws com.liferay.portal.kernel.exception.PortalException, 238 com.liferay.portal.kernel.exception.SystemException { 239 return getService().getPersistedModel(primaryKeyObj); 240 } 241 242 /** 243 * Returns the message boards mailing list with the matching UUID and company. 244 * 245 * @param uuid the message boards mailing list's UUID 246 * @param companyId the primary key of the company 247 * @return the matching message boards mailing list 248 * @throws PortalException if a matching message boards mailing list could not be found 249 * @throws SystemException if a system exception occurred 250 */ 251 public static com.liferay.portlet.messageboards.model.MBMailingList getMBMailingListByUuidAndCompanyId( 252 java.lang.String uuid, long companyId) 253 throws com.liferay.portal.kernel.exception.PortalException, 254 com.liferay.portal.kernel.exception.SystemException { 255 return getService().getMBMailingListByUuidAndCompanyId(uuid, companyId); 256 } 257 258 /** 259 * Returns the message boards mailing list matching the UUID and group. 260 * 261 * @param uuid the message boards mailing list's UUID 262 * @param groupId the primary key of the group 263 * @return the matching message boards mailing list 264 * @throws PortalException if a matching message boards mailing list could not be found 265 * @throws SystemException if a system exception occurred 266 */ 267 public static com.liferay.portlet.messageboards.model.MBMailingList getMBMailingListByUuidAndGroupId( 268 java.lang.String uuid, long groupId) 269 throws com.liferay.portal.kernel.exception.PortalException, 270 com.liferay.portal.kernel.exception.SystemException { 271 return getService().getMBMailingListByUuidAndGroupId(uuid, groupId); 272 } 273 274 /** 275 * Returns a range of all the message boards mailing lists. 276 * 277 * <p> 278 * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. 279 * </p> 280 * 281 * @param start the lower bound of the range of message boards mailing lists 282 * @param end the upper bound of the range of message boards mailing lists (not inclusive) 283 * @return the range of message boards mailing lists 284 * @throws SystemException if a system exception occurred 285 */ 286 public static java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> getMBMailingLists( 287 int start, int end) 288 throws com.liferay.portal.kernel.exception.SystemException { 289 return getService().getMBMailingLists(start, end); 290 } 291 292 /** 293 * Returns the number of message boards mailing lists. 294 * 295 * @return the number of message boards mailing lists 296 * @throws SystemException if a system exception occurred 297 */ 298 public static int getMBMailingListsCount() 299 throws com.liferay.portal.kernel.exception.SystemException { 300 return getService().getMBMailingListsCount(); 301 } 302 303 /** 304 * Updates the message boards mailing list in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. 305 * 306 * @param mbMailingList the message boards mailing list 307 * @return the message boards mailing list that was updated 308 * @throws SystemException if a system exception occurred 309 */ 310 public static com.liferay.portlet.messageboards.model.MBMailingList updateMBMailingList( 311 com.liferay.portlet.messageboards.model.MBMailingList mbMailingList) 312 throws com.liferay.portal.kernel.exception.SystemException { 313 return getService().updateMBMailingList(mbMailingList); 314 } 315 316 /** 317 * Returns the Spring bean ID for this bean. 318 * 319 * @return the Spring bean ID for this bean 320 */ 321 public static java.lang.String getBeanIdentifier() { 322 return getService().getBeanIdentifier(); 323 } 324 325 /** 326 * Sets the Spring bean ID for this bean. 327 * 328 * @param beanIdentifier the Spring bean ID for this bean 329 */ 330 public static void setBeanIdentifier(java.lang.String beanIdentifier) { 331 getService().setBeanIdentifier(beanIdentifier); 332 } 333 334 public static com.liferay.portlet.messageboards.model.MBMailingList addMailingList( 335 long userId, long groupId, long categoryId, 336 java.lang.String emailAddress, java.lang.String inProtocol, 337 java.lang.String inServerName, int inServerPort, boolean inUseSSL, 338 java.lang.String inUserName, java.lang.String inPassword, 339 int inReadInterval, java.lang.String outEmailAddress, 340 boolean outCustom, java.lang.String outServerName, int outServerPort, 341 boolean outUseSSL, java.lang.String outUserName, 342 java.lang.String outPassword, boolean allowAnonymous, boolean active, 343 com.liferay.portal.service.ServiceContext serviceContext) 344 throws com.liferay.portal.kernel.exception.PortalException, 345 com.liferay.portal.kernel.exception.SystemException { 346 return getService() 347 .addMailingList(userId, groupId, categoryId, emailAddress, 348 inProtocol, inServerName, inServerPort, inUseSSL, inUserName, 349 inPassword, inReadInterval, outEmailAddress, outCustom, 350 outServerName, outServerPort, outUseSSL, outUserName, outPassword, 351 allowAnonymous, active, serviceContext); 352 } 353 354 public static void deleteCategoryMailingList(long groupId, long categoryId) 355 throws com.liferay.portal.kernel.exception.PortalException, 356 com.liferay.portal.kernel.exception.SystemException { 357 getService().deleteCategoryMailingList(groupId, categoryId); 358 } 359 360 public static void deleteMailingList(long mailingListId) 361 throws com.liferay.portal.kernel.exception.PortalException, 362 com.liferay.portal.kernel.exception.SystemException { 363 getService().deleteMailingList(mailingListId); 364 } 365 366 public static void deleteMailingList( 367 com.liferay.portlet.messageboards.model.MBMailingList mailingList) 368 throws com.liferay.portal.kernel.exception.PortalException, 369 com.liferay.portal.kernel.exception.SystemException { 370 getService().deleteMailingList(mailingList); 371 } 372 373 public static com.liferay.portlet.messageboards.model.MBMailingList getCategoryMailingList( 374 long groupId, long categoryId) 375 throws com.liferay.portal.kernel.exception.PortalException, 376 com.liferay.portal.kernel.exception.SystemException { 377 return getService().getCategoryMailingList(groupId, categoryId); 378 } 379 380 public static com.liferay.portlet.messageboards.model.MBMailingList updateMailingList( 381 long mailingListId, java.lang.String emailAddress, 382 java.lang.String inProtocol, java.lang.String inServerName, 383 int inServerPort, boolean inUseSSL, java.lang.String inUserName, 384 java.lang.String inPassword, int inReadInterval, 385 java.lang.String outEmailAddress, boolean outCustom, 386 java.lang.String outServerName, int outServerPort, boolean outUseSSL, 387 java.lang.String outUserName, java.lang.String outPassword, 388 boolean allowAnonymous, boolean active, 389 com.liferay.portal.service.ServiceContext serviceContext) 390 throws com.liferay.portal.kernel.exception.PortalException, 391 com.liferay.portal.kernel.exception.SystemException { 392 return getService() 393 .updateMailingList(mailingListId, emailAddress, inProtocol, 394 inServerName, inServerPort, inUseSSL, inUserName, inPassword, 395 inReadInterval, outEmailAddress, outCustom, outServerName, 396 outServerPort, outUseSSL, outUserName, outPassword, allowAnonymous, 397 active, serviceContext); 398 } 399 400 public static MBMailingListLocalService getService() { 401 if (_service == null) { 402 _service = (MBMailingListLocalService)PortalBeanLocatorUtil.locate(MBMailingListLocalService.class.getName()); 403 404 ReferenceRegistry.registerReference(MBMailingListLocalServiceUtil.class, 405 "_service"); 406 } 407 408 return _service; 409 } 410 411 /** 412 * @deprecated As of 6.2.0 413 */ 414 public void setService(MBMailingListLocalService service) { 415 } 416 417 private static MBMailingListLocalService _service; 418 }