Subversion Repositories SmartDukaan

Rev

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

Rev 1599 Rev 1672
Line 357... Line 357...
357
	Returns number of registered users.
357
	Returns number of registered users.
358
	If userType = null, then it returns count of all users, including anonymous
358
	If userType = null, then it returns count of all users, including anonymous
359
	If userType = UserType.ANONYMOUS, then it returns count of anonymous users only
359
	If userType = UserType.ANONYMOUS, then it returns count of anonymous users only
360
	If userType = UserType.USER, then it returns count of non-anonymous users only
360
	If userType = UserType.USER, then it returns count of non-anonymous users only
361
	*/
361
	*/
362
	i64 getUserCount(1:UserType userType)
362
	i64 getUserCount(1:UserType userType),
363
	
363
	
-
 
364
	/**
-
 
365
	Returns list of users of type userType. If userType is null, then returns all the users.
-
 
366
	*/
-
 
367
	list<User> getAllUsers(1: UserType userType)
364
	
368
	
-
 
369
		
365
	/** Masking right now. May be used later.	
370
	/** Masking right now. May be used later.	
366
	void addWidget(1:Widget widget) throws (1:WidgetException scx),
371
	void addWidget(1:Widget widget) throws (1:WidgetException scx),
367
	void addItemToWidget(1:i64 widget_id, 2:list<i64> items) throws (1:WidgetException scx),
372
	void addItemToWidget(1:i64 widget_id, 2:list<i64> items) throws (1:WidgetException scx),
368
	void deleteItemFromWidget(1:i64 widget_id, 2:i64 item_id) throws (1:WidgetException scx),
373
	void deleteItemFromWidget(1:i64 widget_id, 2:i64 item_id) throws (1:WidgetException scx),
369
	void updateWidget(1:i64 widgetId, 2:bool enable) throws (1:WidgetException scx),
374
	void updateWidget(1:i64 widgetId, 2:bool enable) throws (1:WidgetException scx),
Line 372... Line 377...
372
	*/
377
	*/
373
	
378
	
374
	
379
	
375
}
380
}
376
 
381
 
-
 
382