mirror of
				https://github.com/OPM/ResInsight.git
				synced 2025-02-25 18:55:39 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			456 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			456 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
 | 
						|
import "Definitions.proto";
 | 
						|
import "Case.proto";
 | 
						|
import "PdmObject.proto";
 | 
						|
 | 
						|
package rips;
 | 
						|
 | 
						|
service Project {
 | 
						|
  rpc GetCurrentCase(Empty) returns (CaseRequest) {}
 | 
						|
  rpc GetSelectedCases(Empty) returns (CaseInfoArray) {}
 | 
						|
  rpc GetAllCaseGroups(Empty) returns (CaseGroups) {}
 | 
						|
  rpc GetAllCases(Empty) returns (CaseInfoArray) {}
 | 
						|
  rpc GetCasesInGroup(CaseGroup) returns (CaseInfoArray) {}
 | 
						|
  rpc GetPdmObject(Empty) returns (PdmObject) {}
 | 
						|
}
 |