Subversion Repositories SmartDukaan

Rev

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

Rev 1891 Rev 2023
Line 46... Line 46...
46
 
46
 
47
struct StatisticsUser{
47
struct StatisticsUser{
48
	1:string username
48
	1:string username
49
}
49
}
50
 
50
 
-
 
51
struct CatalogDashboardUser{
-
 
52
	1:string username,
-
 
53
	2:string password
-
 
54
}
-
 
55
 
51
struct UserEmail{
56
struct UserEmail{
52
	1:i64 id,
57
	1:i64 id,
53
	2:string emailTo,
58
	2:string emailTo,
54
	3:string emailFrom,
59
	3:string emailFrom,
55
	4:string subject,
60
	4:string subject,
Line 119... Line 124...
119
	ReportUser authenticateReportUser(1:string username, 2:string password) throws(1:HelperServiceException hse),
124
	ReportUser authenticateReportUser(1:string username, 2:string password) throws(1:HelperServiceException hse),
120
	
125
	
121
	/**
126
	/**
122
	Returns list of reports which are configured for the given role. 
127
	Returns list of reports which are configured for the given role. 
123
	*/
128
	*/
124
	list<Report> getReports(1:i64 role)
129
	list<Report> getReports(1:i64 role),
-
 
130
	
-
 
131
	/**
-
 
132
	 Returns the CatalogDashboardUser struct associated with the given username and password if they match.
-
 
133
	 Throws an exception otherwise.
-
 
134
	*/
-
 
135
	CatalogDashboardUser authenticateCatalogUser(1:string username, 2:string password) throws(1:HelperServiceException hse),
125
}
136
}
126
137