Subversion Repositories SmartDukaan

Rev

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

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