Subversion Repositories SmartDukaan

Rev

Rev 3893 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3893 chandransh 1
namespace java in.shop2020.content
2
namespace py shop2020.thriftpy.content
3
 
4
include "GenericService.thrift"
5
 
3896 chandransh 6
exception ContentServiceException{
7
	1:i64 id,
8
	2:string message
9
}
10
 
3893 chandransh 11
service ContentService extends GenericService.GenericService {
3896 chandransh 12
	/**
13
	Push the content of the given entity to production
14
	*/
15
	bool pushContentToProduction(1:i64 entityId) throws (1:ContentServiceException cse) 
3893 chandransh 16
}