Subversion Repositories SmartDukaan

Rev

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

Rev 4806 Rev 4996
Line 93... Line 93...
93
	2:string description,
93
	2:string description,
94
	3:string controller
94
	3:string controller
95
}
95
}
96
 
96
 
97
struct QuickLink	{
97
struct QuickLink	{
-
 
98
	1:i64 id,
98
	1:string url,
99
	2:string url,
99
	2:string text
100
	3:string text
100
}
101
}
101
 
102
 
102
service HelperService extends GenericService.GenericService{
103
service HelperService extends GenericService.GenericService{
103
	/**
104
	/**
104
	* Save email details, to be sent later; Also returns its identifier.
105
	* Save email details, to be sent later; Also returns its identifier.
Line 177... Line 178...
177
    bool validateLogIn(1:string emailId, 2:string password),
178
    bool validateLogIn(1:string emailId, 2:string password),
178
    void updatePasswordForAgent(1:string agentEmailId, 2:string password),
179
    void updatePasswordForAgent(1:string agentEmailId, 2:string password),
179
 
180
 
180
    // Methods to read roles and permissions information
181
    // Methods to read roles and permissions information
181
    list<string> getRoleNamesForAgent(1:string agentEmailId),
182
    list<string> getRoleNamesForAgent(1:string agentEmailId),
182
    list<string> getPermissionsForRoleName(1:string roleName),	
183
    list<string> getPermissionsForRoleName(1:string roleName),
183
    
184
    
184
    //Methods to save and read QuickLinks
185
    //Methods to save and read QuickLinks
185
    void saveQuickLink(1:string url, 2:string text) throws(1:HelperServiceException hse),
186
    void saveQuickLink(1:string url, 2:string text) throws(1:HelperServiceException hse),
186
    list<QuickLink> getQuickLinks() throws(1:HelperServiceException hse)
187
    list<QuickLink> getQuickLinks() throws(1:HelperServiceException hse),
-
 
188
    void updateQuickLink(1:i64 id, 2:string url, 3:string text) throws(1:HelperServiceException hse)
187
}
189
}
188
190