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.portlet.shopping.service; 016 017 /** 018 * <p> 019 * This class is a wrapper for {@link ShoppingCartLocalService}. 020 * </p> 021 * 022 * @author Brian Wing Shun Chan 023 * @see ShoppingCartLocalService 024 * @generated 025 */ 026 public class ShoppingCartLocalServiceWrapper implements ShoppingCartLocalService { 027 public ShoppingCartLocalServiceWrapper( 028 ShoppingCartLocalService shoppingCartLocalService) { 029 _shoppingCartLocalService = shoppingCartLocalService; 030 } 031 032 /** 033 * Adds the shopping cart to the database. Also notifies the appropriate model listeners. 034 * 035 * @param shoppingCart the shopping cart 036 * @return the shopping cart that was added 037 * @throws SystemException if a system exception occurred 038 */ 039 public com.liferay.portlet.shopping.model.ShoppingCart addShoppingCart( 040 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart) 041 throws com.liferay.portal.kernel.exception.SystemException { 042 return _shoppingCartLocalService.addShoppingCart(shoppingCart); 043 } 044 045 /** 046 * Creates a new shopping cart with the primary key. Does not add the shopping cart to the database. 047 * 048 * @param cartId the primary key for the new shopping cart 049 * @return the new shopping cart 050 */ 051 public com.liferay.portlet.shopping.model.ShoppingCart createShoppingCart( 052 long cartId) { 053 return _shoppingCartLocalService.createShoppingCart(cartId); 054 } 055 056 /** 057 * Deletes the shopping cart with the primary key from the database. Also notifies the appropriate model listeners. 058 * 059 * @param cartId the primary key of the shopping cart 060 * @throws PortalException if a shopping cart with the primary key could not be found 061 * @throws SystemException if a system exception occurred 062 */ 063 public void deleteShoppingCart(long cartId) 064 throws com.liferay.portal.kernel.exception.PortalException, 065 com.liferay.portal.kernel.exception.SystemException { 066 _shoppingCartLocalService.deleteShoppingCart(cartId); 067 } 068 069 /** 070 * Deletes the shopping cart from the database. Also notifies the appropriate model listeners. 071 * 072 * @param shoppingCart the shopping cart 073 * @throws SystemException if a system exception occurred 074 */ 075 public void deleteShoppingCart( 076 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart) 077 throws com.liferay.portal.kernel.exception.SystemException { 078 _shoppingCartLocalService.deleteShoppingCart(shoppingCart); 079 } 080 081 /** 082 * Performs a dynamic query on the database and returns the matching rows. 083 * 084 * @param dynamicQuery the dynamic query 085 * @return the matching rows 086 * @throws SystemException if a system exception occurred 087 */ 088 @SuppressWarnings("rawtypes") 089 public java.util.List dynamicQuery( 090 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) 091 throws com.liferay.portal.kernel.exception.SystemException { 092 return _shoppingCartLocalService.dynamicQuery(dynamicQuery); 093 } 094 095 /** 096 * Performs a dynamic query on the database and returns a range of the matching rows. 097 * 098 * <p> 099 * 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. 100 * </p> 101 * 102 * @param dynamicQuery the dynamic query 103 * @param start the lower bound of the range of model instances 104 * @param end the upper bound of the range of model instances (not inclusive) 105 * @return the range of matching rows 106 * @throws SystemException if a system exception occurred 107 */ 108 @SuppressWarnings("rawtypes") 109 public java.util.List dynamicQuery( 110 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, 111 int end) throws com.liferay.portal.kernel.exception.SystemException { 112 return _shoppingCartLocalService.dynamicQuery(dynamicQuery, start, end); 113 } 114 115 /** 116 * Performs a dynamic query on the database and returns an ordered range of the matching rows. 117 * 118 * <p> 119 * 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. 120 * </p> 121 * 122 * @param dynamicQuery the dynamic query 123 * @param start the lower bound of the range of model instances 124 * @param end the upper bound of the range of model instances (not inclusive) 125 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 126 * @return the ordered range of matching rows 127 * @throws SystemException if a system exception occurred 128 */ 129 @SuppressWarnings("rawtypes") 130 public java.util.List dynamicQuery( 131 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, 132 int end, 133 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 134 throws com.liferay.portal.kernel.exception.SystemException { 135 return _shoppingCartLocalService.dynamicQuery(dynamicQuery, start, end, 136 orderByComparator); 137 } 138 139 /** 140 * Returns the number of rows that match the dynamic query. 141 * 142 * @param dynamicQuery the dynamic query 143 * @return the number of rows that match the dynamic query 144 * @throws SystemException if a system exception occurred 145 */ 146 public long dynamicQueryCount( 147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) 148 throws com.liferay.portal.kernel.exception.SystemException { 149 return _shoppingCartLocalService.dynamicQueryCount(dynamicQuery); 150 } 151 152 /** 153 * Returns the shopping cart with the primary key. 154 * 155 * @param cartId the primary key of the shopping cart 156 * @return the shopping cart 157 * @throws PortalException if a shopping cart with the primary key could not be found 158 * @throws SystemException if a system exception occurred 159 */ 160 public com.liferay.portlet.shopping.model.ShoppingCart getShoppingCart( 161 long cartId) 162 throws com.liferay.portal.kernel.exception.PortalException, 163 com.liferay.portal.kernel.exception.SystemException { 164 return _shoppingCartLocalService.getShoppingCart(cartId); 165 } 166 167 public com.liferay.portal.model.PersistedModel getPersistedModel( 168 java.io.Serializable primaryKeyObj) 169 throws com.liferay.portal.kernel.exception.PortalException, 170 com.liferay.portal.kernel.exception.SystemException { 171 return _shoppingCartLocalService.getPersistedModel(primaryKeyObj); 172 } 173 174 /** 175 * Returns a range of all the shopping carts. 176 * 177 * <p> 178 * 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. 179 * </p> 180 * 181 * @param start the lower bound of the range of shopping carts 182 * @param end the upper bound of the range of shopping carts (not inclusive) 183 * @return the range of shopping carts 184 * @throws SystemException if a system exception occurred 185 */ 186 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> getShoppingCarts( 187 int start, int end) 188 throws com.liferay.portal.kernel.exception.SystemException { 189 return _shoppingCartLocalService.getShoppingCarts(start, end); 190 } 191 192 /** 193 * Returns the number of shopping carts. 194 * 195 * @return the number of shopping carts 196 * @throws SystemException if a system exception occurred 197 */ 198 public int getShoppingCartsCount() 199 throws com.liferay.portal.kernel.exception.SystemException { 200 return _shoppingCartLocalService.getShoppingCartsCount(); 201 } 202 203 /** 204 * Updates the shopping cart in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. 205 * 206 * @param shoppingCart the shopping cart 207 * @return the shopping cart that was updated 208 * @throws SystemException if a system exception occurred 209 */ 210 public com.liferay.portlet.shopping.model.ShoppingCart updateShoppingCart( 211 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart) 212 throws com.liferay.portal.kernel.exception.SystemException { 213 return _shoppingCartLocalService.updateShoppingCart(shoppingCart); 214 } 215 216 /** 217 * Updates the shopping cart in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. 218 * 219 * @param shoppingCart the shopping cart 220 * @param merge whether to merge the shopping cart 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. 221 * @return the shopping cart that was updated 222 * @throws SystemException if a system exception occurred 223 */ 224 public com.liferay.portlet.shopping.model.ShoppingCart updateShoppingCart( 225 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart, 226 boolean merge) 227 throws com.liferay.portal.kernel.exception.SystemException { 228 return _shoppingCartLocalService.updateShoppingCart(shoppingCart, merge); 229 } 230 231 /** 232 * Returns the Spring bean ID for this bean. 233 * 234 * @return the Spring bean ID for this bean 235 */ 236 public java.lang.String getBeanIdentifier() { 237 return _shoppingCartLocalService.getBeanIdentifier(); 238 } 239 240 /** 241 * Sets the Spring bean ID for this bean. 242 * 243 * @param beanIdentifier the Spring bean ID for this bean 244 */ 245 public void setBeanIdentifier(java.lang.String beanIdentifier) { 246 _shoppingCartLocalService.setBeanIdentifier(beanIdentifier); 247 } 248 249 public void deleteGroupCarts(long groupId) 250 throws com.liferay.portal.kernel.exception.SystemException { 251 _shoppingCartLocalService.deleteGroupCarts(groupId); 252 } 253 254 public void deleteUserCarts(long userId) 255 throws com.liferay.portal.kernel.exception.SystemException { 256 _shoppingCartLocalService.deleteUserCarts(userId); 257 } 258 259 public com.liferay.portlet.shopping.model.ShoppingCart getCart( 260 long userId, long groupId) 261 throws com.liferay.portal.kernel.exception.PortalException, 262 com.liferay.portal.kernel.exception.SystemException { 263 return _shoppingCartLocalService.getCart(userId, groupId); 264 } 265 266 public java.util.Map<com.liferay.portlet.shopping.model.ShoppingCartItem, java.lang.Integer> getItems( 267 long groupId, java.lang.String itemIds) 268 throws com.liferay.portal.kernel.exception.SystemException { 269 return _shoppingCartLocalService.getItems(groupId, itemIds); 270 } 271 272 public com.liferay.portlet.shopping.model.ShoppingCart updateCart( 273 long userId, long groupId, java.lang.String itemIds, 274 java.lang.String couponCodes, int altShipping, boolean insure) 275 throws com.liferay.portal.kernel.exception.PortalException, 276 com.liferay.portal.kernel.exception.SystemException { 277 return _shoppingCartLocalService.updateCart(userId, groupId, itemIds, 278 couponCodes, altShipping, insure); 279 } 280 281 public ShoppingCartLocalService getWrappedShoppingCartLocalService() { 282 return _shoppingCartLocalService; 283 } 284 285 public void setWrappedShoppingCartLocalService( 286 ShoppingCartLocalService shoppingCartLocalService) { 287 _shoppingCartLocalService = shoppingCartLocalService; 288 } 289 290 private ShoppingCartLocalService _shoppingCartLocalService; 291 }