-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/jannast/t2iapi into manipul…
…ation_get_component_sw_version # Conflicts: # CHANGELOG.md # src/t2iapi/device/device_responses.proto # src/t2iapi/device/service.proto
- Loading branch information
Showing
13 changed files
with
237 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This Source Code Form is subject to the terms of the MIT License. | ||
# | ||
# Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
# SPDX-License-Identifier: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This Source Code Form is subject to the terms of the MIT License. | ||
# | ||
# Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
# SPDX-License-Identifier: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "CodedValueProto"; | ||
|
||
import "t2iapi/biceps/localizedtext.proto"; | ||
import "google/protobuf/wrappers.proto"; | ||
|
||
/* | ||
Represents pm:CodedValue (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message CodedValueMsg { | ||
repeated LocalizedTextMsg coding_system_name = 1; | ||
repeated LocalizedTextMsg concept_description = 2; | ||
/* | ||
Represents pm:Translation (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message TranslationMsg { | ||
string code_attr = 3; | ||
google.protobuf.StringValue coding_system_attr = 4; | ||
google.protobuf.StringValue coding_system_version_attr = 5; | ||
} | ||
repeated TranslationMsg translation = 6; | ||
string code_attr = 7; | ||
google.protobuf.StringValue coding_system_attr = 8; | ||
google.protobuf.StringValue coding_system_version_attr = 9; | ||
google.protobuf.StringValue symbolic_code_name_attr = 10; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "InstanceIdentifierProto"; | ||
|
||
import "google/protobuf/wrappers.proto"; | ||
import "t2iapi/biceps/codedvalue.proto"; | ||
import "t2iapi/biceps/localizedtext.proto"; | ||
|
||
/* | ||
Represents pm:InstanceIdentifier (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message InstanceIdentifierMsg { | ||
CodedValueMsg type = 1; | ||
repeated LocalizedTextMsg identifier_name = 2; | ||
google.protobuf.StringValue root_attr = 3; | ||
google.protobuf.StringValue extension_attr = 4; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "LocalizedTextProto"; | ||
|
||
import "google/protobuf/wrappers.proto"; | ||
import "t2iapi/biceps/localizedtextwidth.proto"; | ||
|
||
/* | ||
Represents pm:LocalizedText (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message LocalizedTextMsg { | ||
google.protobuf.StringValue localized_text_content = 1; | ||
google.protobuf.StringValue ref_attr = 2; | ||
google.protobuf.StringValue lang_attr = 3; | ||
google.protobuf.UInt64Value version_attr = 4; | ||
LocalizedTextWidthMsg text_width_attr = 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "LocalizedTextWidthProto"; | ||
|
||
/* | ||
Represents pm:LocalizedTextWidth (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message LocalizedTextWidthMsg { | ||
/* | ||
Indicates the width of a localized text based on the number of fullwidth characters | ||
(defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
enum EnumType { | ||
ENUM_TYPE_XS = 0; // A line has 4 or less fullwidth characters. | ||
ENUM_TYPE_S = 1; // A line has 8 or less fullwidth characters. | ||
ENUM_TYPE_M = 2; // A line has 12 or less fullwidth characters. | ||
ENUM_TYPE_L = 3; // A line has 16 or less fullwidth characters. | ||
ENUM_TYPE_XL = 4; // A line has 20 or less fullwidth characters. | ||
ENUM_TYPE_XXL = 5; // A line has 21 or more fullwidth characters. | ||
} | ||
EnumType enum_type = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "MetadataProto"; | ||
|
||
import "t2iapi/biceps/localizedtext.proto"; | ||
import "t2iapi/biceps/instanceidentifier.proto"; | ||
import "google/protobuf/wrappers.proto"; | ||
|
||
/* | ||
Contains the metadata of the device. Represents pm:MetaData (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message MetaDataMsg { | ||
/* | ||
Represents pm:Udi (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message UdiMsg { | ||
string device_identifier = 1; | ||
string human_readable_form = 2; | ||
t2iapi.biceps.InstanceIdentifierMsg issuer = 3; | ||
t2iapi.biceps.InstanceIdentifierMsg jurisdiction = 4; | ||
} | ||
repeated UdiMsg udi = 5; | ||
google.protobuf.StringValue lot_number = 6; | ||
repeated t2iapi.biceps.LocalizedTextMsg manufacturer = 7; | ||
google.protobuf.StringValue manufacture_date = 8; | ||
google.protobuf.StringValue expiration_date = 9; | ||
repeated t2iapi.biceps.LocalizedTextMsg model_name = 10; | ||
google.protobuf.StringValue model_number = 11; | ||
repeated string serial_number = 12; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters