Skip to content

Commit

Permalink
adapt naming an CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaeck committed Dec 6, 2024
1 parent 28f680c commit e653e63
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- manipulation GetMdsUiSupportedLanguages for devices
- manipulation InsertContainmentTreeEntryForSequenceId for devices
- manipulation to shut down and restart for devices
- manipulation RepresentativeEnsembleMembershipIndication for contexts
- manipulation EndMembershipInEnsemble for contexts
- manipulation GetEnsembleIds for contexts
- manipulation IndicateMembershipInEnsembleByEnsembleId for contexts
- manipulation EndMembershipInEnsembleByEnsembleId for contexts

## [4.1.0] - 2024-02-22

Expand Down
5 changes: 2 additions & 3 deletions src/t2iapi/context/context_requests.proto
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ message AssociatePatientRequest {
Request to indicate or end membership in an SDC PARTICIPANT ENSEMBLE for a provided pm:EnsembleContextDescriptor and a
provided ensemble-id.
*/
message EnsembleIdentifierRequest {
message EnsembleIdRequest {
string descriptor_handle = 1;
string ensemble_identifier = 2; // ensemble-id that refers to an SDC PARTICIPANT ENSEMBLE membership
// shall be indicated in
string ensemble_id = 2; // ensemble-id that refers to an SDC PARTICIPANT ENSEMBLE membership shall be indicated in
}

2 changes: 1 addition & 1 deletion src/t2iapi/context/context_responses.proto
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Response containing the @Handles of the newly created or adapted pm:EnsembleCont
such that their @ContextAssociation is 'Assoc' in order to indicate membership in an SDC PARTICIPANT ENSEMBLE specified
by the provided ensemble-id.
*/
message IndicateMembershipInEnsembleByIdentifierResponse {
message IndicateMembershipInEnsembleByEnsembleIdResponse {
BasicResponse status = 1;
repeated string context_state_handle = 2; // @Handles of the pm:EnsembleContextStates, that were created or adapted
// to indicate membership in an SDC PARTICIPANT ENSEMBLE
Expand Down
6 changes: 3 additions & 3 deletions src/t2iapi/context/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ service ContextService {
The state shall be persistent until a next manipulation call. If the device is not able to maintain the static state,
it shall return RESULT_NOT_SUPPORTED.
*/
rpc IndicateMembershipInEnsembleByIdentifier (EnsembleIdentifierRequest)
returns (IndicateMembershipInEnsembleByIdentifierResponse);
rpc IndicateMembershipInEnsembleByEnsembleId (EnsembleIdRequest)
returns (IndicateMembershipInEnsembleByEnsembleIdResponse);

/*
End membership in an SDC PARTICIPANT ENSEMBLE for a provided pm:EnsembleContextDescriptor and a provided ensemble-id.
Expand All @@ -211,7 +211,7 @@ service ContextService {
The state shall be persistent until a next manipulation call. If the device is not able to maintain the static state,
it shall return RESULT_NOT_SUPPORTED.
*/
rpc EndMembershipInEnsemble (EnsembleIdentifierRequest)
rpc EndMembershipInEnsembleByEnsembleId (EnsembleIdRequest)
returns (BasicResponse);

/*
Expand Down

0 comments on commit e653e63

Please sign in to comment.