Subversion Repositories SmartDukaan

Rev

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

Rev 1861 Rev 1891
Line 411... Line 411...
411
	If userType = UserType.USER, then it returns count of non-anonymous users only
411
	If userType = UserType.USER, then it returns count of non-anonymous users only
412
	*/
412
	*/
413
	i64 getUserCount(1:UserType userType),
413
	i64 getUserCount(1:UserType userType),
414
	
414
	
415
	/**
415
	/**
416
	Returns list of users of type userType. If userType is null, then returns all the users.
416
	Returns list of users of type userType who registered between startDate and endDate (both inclusive).
417
	*/
-
 
418
	list<User> getAllUsers(1: UserType userType)
417
	If any of startDate or endDate is -1, then that filter is ignored. 
-
 
418
	If userType is null, then returns all the users, irrespective of anonymous flag
419
	
419
	
-
 
420
	*/
-
 
421
	list<User> getAllUsers(1:UserType userType, 2:i64 startDate, 3:i64 endDate)
420
		
422
		
421
	/** Masking right now. May be used later.	
423
	/** Masking right now. May be used later.	
422
	void addWidget(1:Widget widget) throws (1:WidgetException scx),
424
	void addWidget(1:Widget widget) throws (1:WidgetException scx),
423
	void addItemToWidget(1:i64 widget_id, 2:list<i64> items) throws (1:WidgetException scx),
425
	void addItemToWidget(1:i64 widget_id, 2:list<i64> items) throws (1:WidgetException scx),
424
	void deleteItemFromWidget(1:i64 widget_id, 2:i64 item_id) throws (1:WidgetException scx),
426
	void deleteItemFromWidget(1:i64 widget_id, 2:i64 item_id) throws (1:WidgetException scx),