#4578 Add commands for create and clone view

This commit is contained in:
Gaute Lindkvist
2019-08-23 11:25:00 +02:00
parent 3f6d0db07a
commit 2e49670f40
22 changed files with 368 additions and 29 deletions

View File

@@ -256,6 +256,16 @@ message ExportFlowInfoRequest
double aquiferCellThreshold = 7;
}
message CreateViewRequest
{
int32 caseId = 1;
}
message CloneViewRequest
{
int32 viewId = 1;
}
/* CommandParams handles both command name and parameters in one.
* The message type and content is used as parameters and
* the name of the variable is used to find the command name. */
@@ -296,8 +306,8 @@ message CommandParams
CreateGridCaseGroupRequest createGridCaseGroup = 27;
CreateStatisticsCaseRequest createStatisticsCase = 28;
ExportFlowInfoRequest exportFlowCharacteristics = 29;
CreateViewRequest createView = 30;
CloneViewRequest cloneView = 31;
}
}
@@ -312,6 +322,11 @@ message CreateStatisticsCaseResult
int32 caseId = 1;
}
message CreateViewResult
{
int32 viewId = 1;
}
/* Command reply handles the return values for the generic command
* The name of the variable is used to map to the cafPdmObject classKeyword */
message CommandReply
@@ -322,6 +337,7 @@ message CommandReply
CaseRequest loadCaseResult = 2;
GridCaseGroupResult createGridCaseGroupResult = 3;
CreateStatisticsCaseResult createStatisticsCaseResult = 4;
CreateViewResult createViewResult = 5;
}
}