Subversion Repositories SmartDukaan

Rev

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

Rev 1422 Rev 1611
Line 42... Line 42...
42
struct LogisticsUser{
42
struct LogisticsUser{
43
	1:string username,
43
	1:string username,
44
	2:i64 providerId
44
	2:i64 providerId
45
}
45
}
46
 
46
 
-
 
47
struct StatisticsUser{
-
 
48
	1:string username,
-
 
49
}
-
 
50
 
47
struct UserEmail{
51
struct UserEmail{
48
	1:i64 id,
52
	1:i64 id,
49
	2:string emailTo,
53
	2:string emailTo,
50
	3:string emailFrom,
54
	3:string emailFrom,
51
	4:string subject,
55
	4:string subject,
Line 88... Line 92...
88
	/**
92
	/**
89
	 Returns the LogisticsUser struct associated with the given username and password if they match.
93
	 Returns the LogisticsUser struct associated with the given username and password if they match.
90
	 Throws an exception otherwise.
94
	 Throws an exception otherwise.
91
	*/
95
	*/
92
	LogisticsUser authenticateLogisticsUser(1:string username, 2:string password) throws(1:HelperServiceException hse)
96
	LogisticsUser authenticateLogisticsUser(1:string username, 2:string password) throws(1:HelperServiceException hse)
-
 
97
	
-
 
98
	/**
-
 
99
	 Returns the StatisticsUser struct associated with the given username and password if they match.
-
 
100
	 Throws an exception otherwise.
-
 
101
	*/
-
 
102
	StatisticsUser authenticateStatisticsUser(1:string username, 2:string password) throws(1:HelperServiceException hse)
93
}
103
}
94
104