Subversion Repositories SmartDukaan

Rev

Rev 582 | Rev 613 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 582 Rev 592
Line 238... Line 238...
238
	i64 addAddressForUser(1:i64 userId, 2:Address address, 3:bool setDefault)throws (1:UserContextException ucx),
238
	i64 addAddressForUser(1:i64 userId, 2:Address address, 3:bool setDefault)throws (1:UserContextException ucx),
239
	bool removeAddressForUser(1:i64 userid, 2:i64 addressId)throws (1:UserContextException ucx),
239
	bool removeAddressForUser(1:i64 userid, 2:i64 addressId)throws (1:UserContextException ucx),
240
	bool setUserAsLoggedIn(1:i64 userId, 2:i64 timestamp)throws (1:UserContextException ucx),
240
	bool setUserAsLoggedIn(1:i64 userId, 2:i64 timestamp)throws (1:UserContextException ucx),
241
	bool setUserAsLoggedOut(1:i64 userid, 2:i64 timestamp)throws (1:UserContextException ucx),
241
	bool setUserAsLoggedOut(1:i64 userid, 2:i64 timestamp)throws (1:UserContextException ucx),
242
	bool setDefaultAddress(1:i64 userid, 2:i64 addressId)throws (1:UserContextException ucx),
242
	bool setDefaultAddress(1:i64 userid, 2:i64 addressId)throws (1:UserContextException ucx),
243
	bool updatePassword(1:i64 userid, 2:string password)throws (1:UserContextException ucx),
243
	bool updatePassword(1:i64 userid, 2:string oldPassword, 3:string newPassword)throws (1:UserContextException ucx),
244
	bool forgotPassword(1:string email)throws (1:UserContextException ucx),
244
	bool forgotPassword(1:string email)throws (1:UserContextException ucx),
-
 
245
	list<Address> getAllAddressesForUser(1:i64 userId)throws (1:UserContextException ucx),
-
 
246
	i64 getDefaultAddressId(1:i64 userId)throws (1:UserContextException ucx),
245
	
247
	
246
	i64 createCart(1:i64 userId) throws (1:ShoppingCartException scx),
248
	i64 createCart(1:i64 userId) throws (1:ShoppingCartException scx),
247
	Cart getCurrentCart(1:i64 userId) throws (1:ShoppingCartException scx),	
249
	Cart getCurrentCart(1:i64 userId) throws (1:ShoppingCartException scx),	
248
	Cart getCart(1:i64 cartId) throws (1:ShoppingCartException scx),
250
	Cart getCart(1:i64 cartId) throws (1:ShoppingCartException scx),
249
	list<Cart> getCartsForUser(1:i64 userId, 2:CartStatus status) throws (1:ShoppingCartException scx),
251
	list<Cart> getCartsForUser(1:i64 userId, 2:CartStatus status) throws (1:ShoppingCartException scx),