Subversion Repositories SmartDukaan

Rev

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

Rev 6842 Rev 6848
Line 143... Line 143...
143
struct EntityTag {
143
struct EntityTag {
144
    1:i64 entityId,
144
    1:i64 entityId,
145
    2:string tag
145
    2:string tag
146
}
146
}
147
 
147
 
-
 
148
struct Banner {
-
 
149
    1:string bannerName,
-
 
150
    2:string imageName,
-
 
151
    3:string link,
-
 
152
    4:i64 priority,
-
 
153
    5:bool isActive,
-
 
154
    6:bool hasMap
-
 
155
}
-
 
156
 
-
 
157
struct BannerMap {
-
 
158
    1:string bannerName,
-
 
159
    2:string mapLink,
-
 
160
    3:string coordinates
-
 
161
}
-
 
162
 
148
service CatalogService extends GenericService.GenericService{
163
service CatalogService extends GenericService.GenericService{
149
 
164
 
150
/**
165
/**
151
	Availability and inventory attributes	
166
	Availability and inventory attributes	
152
*/
167
*/
Line 249... Line 264...
249
	bool deleteTag(1:string displayName),
264
	bool deleteTag(1:string displayName),
250
	list<string> getAllTags(),
265
	list<string> getAllTags(),
251
	list<i64> getAllEntitiesByTagName(1:string displayName)
266
	list<i64> getAllEntitiesByTagName(1:string displayName)
252
	map<i64, list<string>> getAllEntityTags()
267
	map<i64, list<string>> getAllEntityTags()
253
	
268
	
-
 
269
	bool addBannerMap(1:string bannerName, 2:string mapLink, 3:string coordinates),
-
 
270
	bool deleteBannerMap(1:string bannerName),
-
 
271
	list <BannerMap> getBannerMapDetails(1:string bannerName),
254
	/**
272
	/**
255
	Delete similar item.
273
	Delete similar item.
256
	*/
274
	*/
257
	bool deleteSimilarItem(1:i64 itemId, 2:i64 catalogItemId) throws (1:CatalogServiceException cex),
275
	bool deleteSimilarItem(1:i64 itemId, 2:i64 catalogItemId) throws (1:CatalogServiceException cex),
258
	
276