Skip to content

Commit e85a9fb

Browse files
committed
update to prosys sdk 5.2.2
1 parent c19330f commit e85a9fb

File tree

335 files changed

+7024
-3866
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

335 files changed

+7024
-3866
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Add necessary dependencies:
1616
<dependency>
1717
<groupId>com.connectedcooking.opcua</groupId>
1818
<artifactId>opcua-dynamic-node-manager</artifactId>
19-
<version>0.2.2</version>
19+
<version>0.2.3</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.prosysopc.ua</groupId>
2323
<artifactId>prosys-opc-ua-sdk-client-server</artifactId>
24-
<version>5.1.0-116</version>
24+
<version>5.2.2-139</version>
2525
</dependency>
2626
```
2727

examples/parent/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
<maven.compiler.source>11</maven.compiler.source>
1515
<maven.compiler.target>11</maven.compiler.target>
1616

17-
<dynamicnodemanager.version>0.2.2-SNAPSHOT</dynamicnodemanager.version>
17+
<dynamicnodemanager.version>0.2.3-SNAPSHOT</dynamicnodemanager.version>
1818

19-
<prosys.version>5.1.0-116</prosys.version>
20-
<slf4j.version>2.0.11</slf4j.version>
21-
<jupiter.version>5.10.1</jupiter.version>
22-
<mockito.version>5.9.0</mockito.version>
23-
<assertj.version>3.25.1</assertj.version>
19+
<prosys.version>5.2.2-139</prosys.version>
20+
<slf4j.version>2.0.13</slf4j.version>
21+
<jupiter.version>5.10.2</jupiter.version>
22+
<mockito.version>5.12.0</mockito.version>
23+
<assertj.version>3.26.0</assertj.version>
2424

25-
<logback.version>1.4.14</logback.version>
25+
<logback.version>1.5.6</logback.version>
2626
</properties>
2727

2828
<dependencyManagement>

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentCommonInformationModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import com.prosysopc.ua.CommonCodegenModel;
3030

3131
/**
32-
* Generated on 2023-09-26 10:56:54
32+
* Generated on 2024-06-17 14:43:51
3333
*/
3434
public class CommercialKitchenEquipmentCommonInformationModel {
3535
public static final CommonCodegenModel MODEL;

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentDataTypeDictionaryHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import com.prosysopc.ua.typedictionary.GeneratedDataTypeDictionary;
3030

3131
/**
32-
* Generated on 2023-09-26 10:56:54
32+
* Generated on 2024-06-17 14:43:51
3333
*/
3434
public class CommercialKitchenEquipmentDataTypeDictionaryHelper {
3535
public static GeneratedDataTypeDictionary createDataTypeDictionary() {

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentDataTypeIds.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
package com.connectedcooking.opcua.dynamicnodemanager.examples.prosys.opc30200.model.cke;
44

55
import com.prosysopc.ua.stack.builtintypes.ExpandedNodeId;
6+
import java.util.Set;
67

78
/**
8-
* Generated on 2023-09-26 10:56:54
9+
* Generated on 2024-06-17 14:43:51
910
*/
1011
public interface CommercialKitchenEquipmentDataTypeIds {
1112
ExpandedNodeId BeverageSMLEnumeration = CommercialKitchenEquipmentUaIds.BeverageSMLEnumeration.asExpandedNodeId();
@@ -55,4 +56,8 @@ public interface CommercialKitchenEquipmentDataTypeIds {
5556
ExpandedNodeId TrayModeEnumeration = CommercialKitchenEquipmentUaIds.TrayModeEnumeration.asExpandedNodeId();
5657

5758
ExpandedNodeId TrayTypeEnumeration = CommercialKitchenEquipmentUaIds.TrayTypeEnumeration.asExpandedNodeId();
59+
60+
static Set<ExpandedNodeId> allDataTypeIdentifiers() {
61+
return InternalCommercialKitchenEquipmentDataTypeIdsHelper.ALL_DATATYPE_IDENTIFIERS;
62+
}
5863
}

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentIds.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,21 @@
22
//
33
package com.connectedcooking.opcua.dynamicnodemanager.examples.prosys.opc30200.model.cke;
44

5+
import com.prosysopc.ua.stack.builtintypes.ExpandedNodeId;
6+
import java.util.Collections;
7+
import java.util.HashSet;
8+
import java.util.Set;
9+
510
/**
6-
* Generated on 2023-09-26 10:56:54
11+
* Generated on 2024-06-17 14:43:51
712
*/
813
public interface CommercialKitchenEquipmentIds extends CommercialKitchenEquipmentVariableIds, CommercialKitchenEquipmentDataTypeIds, CommercialKitchenEquipmentObjectTypeIds, CommercialKitchenEquipmentObjectIds {
14+
static Set<ExpandedNodeId> allIdentifiers() {
15+
Set<ExpandedNodeId> r = new HashSet<>();
16+
r.addAll(CommercialKitchenEquipmentVariableIds.allVariableIdentifiers());
17+
r.addAll(CommercialKitchenEquipmentDataTypeIds.allDataTypeIdentifiers());
18+
r.addAll(CommercialKitchenEquipmentObjectTypeIds.allObjectTypeIdentifiers());
19+
r.addAll(CommercialKitchenEquipmentObjectIds.allObjectIdentifiers());
20+
return Collections.unmodifiableSet(r);
21+
}
922
}

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentObjectIds.java

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,24 @@
33
package com.connectedcooking.opcua.dynamicnodemanager.examples.prosys.opc30200.model.cke;
44

55
import com.prosysopc.ua.stack.builtintypes.ExpandedNodeId;
6+
import java.util.Set;
67

78
/**
8-
* Generated on 2023-09-26 10:56:54
9+
* Generated on 2024-06-17 14:43:51
910
*/
1011
public interface CommercialKitchenEquipmentObjectIds {
11-
ExpandedNodeId CommercialKitchenDeviceType_InformationConditions = CommercialKitchenEquipmentUaIds.CommercialKitchenDeviceType_InformationConditions.asExpandedNodeId();
12-
1312
ExpandedNodeId CommercialKitchenDeviceType_BatchInformation = CommercialKitchenEquipmentUaIds.CommercialKitchenDeviceType_BatchInformation.asExpandedNodeId();
1413

14+
ExpandedNodeId CommercialKitchenDeviceType_InformationConditions = CommercialKitchenEquipmentUaIds.CommercialKitchenDeviceType_InformationConditions.asExpandedNodeId();
15+
1516
ExpandedNodeId CommercialKitchenDeviceType_ErrorConditions = CommercialKitchenEquipmentUaIds.CommercialKitchenDeviceType_ErrorConditions.asExpandedNodeId();
1617

1718
ExpandedNodeId CommercialKitchenDeviceType_HACCPValues = CommercialKitchenEquipmentUaIds.CommercialKitchenDeviceType_HACCPValues.asExpandedNodeId();
1819

19-
ExpandedNodeId CoffeeMachineDeviceType_Parameters = CommercialKitchenEquipmentUaIds.CoffeeMachineDeviceType_Parameters.asExpandedNodeId();
20-
2120
ExpandedNodeId CoffeeMachineDeviceType_RecipeName = CommercialKitchenEquipmentUaIds.CoffeeMachineDeviceType_RecipeName.asExpandedNodeId();
2221

22+
ExpandedNodeId CoffeeMachineDeviceType_Parameters = CommercialKitchenEquipmentUaIds.CoffeeMachineDeviceType_Parameters.asExpandedNodeId();
23+
2324
ExpandedNodeId CombiSteamerDeviceType_CombiSteamer = CommercialKitchenEquipmentUaIds.CombiSteamerDeviceType_CombiSteamer.asExpandedNodeId();
2425

2526
ExpandedNodeId CookingKettleDeviceType_CookingKettle = CommercialKitchenEquipmentUaIds.CookingKettleDeviceType_CookingKettle.asExpandedNodeId();
@@ -47,4 +48,8 @@ public interface CommercialKitchenEquipmentObjectIds {
4748
ExpandedNodeId PressureCookingKettleDeviceType_PressureCookingKettle = CommercialKitchenEquipmentUaIds.PressureCookingKettleDeviceType_PressureCookingKettle.asExpandedNodeId();
4849

4950
ExpandedNodeId ServeryCounterDeviceType_Tray__No__ = CommercialKitchenEquipmentUaIds.ServeryCounterDeviceType_Tray__No__.asExpandedNodeId();
51+
52+
static Set<ExpandedNodeId> allObjectIdentifiers() {
53+
return InternalCommercialKitchenEquipmentObjectIdsHelper.ALL_OBJECT_IDENTIFIERS;
54+
}
5055
}

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentObjectTypeIds.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
package com.connectedcooking.opcua.dynamicnodemanager.examples.prosys.opc30200.model.cke;
44

55
import com.prosysopc.ua.stack.builtintypes.ExpandedNodeId;
6+
import java.util.Set;
67

78
/**
8-
* Generated on 2023-09-26 10:56:54
9+
* Generated on 2024-06-17 14:43:51
910
*/
1011
public interface CommercialKitchenEquipmentObjectTypeIds {
1112
ExpandedNodeId BatchInformationType = CommercialKitchenEquipmentUaIds.BatchInformationType.asExpandedNodeId();
@@ -77,4 +78,8 @@ public interface CommercialKitchenEquipmentObjectTypeIds {
7778
ExpandedNodeId PressureCookingKettleDeviceType = CommercialKitchenEquipmentUaIds.PressureCookingKettleDeviceType.asExpandedNodeId();
7879

7980
ExpandedNodeId ServeryCounterDeviceType = CommercialKitchenEquipmentUaIds.ServeryCounterDeviceType.asExpandedNodeId();
81+
82+
static Set<ExpandedNodeId> allObjectTypeIdentifiers() {
83+
return InternalCommercialKitchenEquipmentObjectTypeIdsHelper.ALL_OBJECTTYPE_IDENTIFIERS;
84+
}
8085
}

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentUaDataTypeIds.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
package com.connectedcooking.opcua.dynamicnodemanager.examples.prosys.opc30200.model.cke;
44

55
import com.prosysopc.ua.UaNodeId;
6+
import java.util.Set;
67

78
/**
8-
* Generated on 2023-09-26 10:56:54
9+
* Generated on 2024-06-17 14:43:51
910
*/
1011
public interface CommercialKitchenEquipmentUaDataTypeIds {
1112
UaNodeId BeverageSMLEnumeration = CommercialKitchenEquipmentUaDataTypeIdsInit.initBeverageSMLEnumeration();
@@ -55,4 +56,8 @@ public interface CommercialKitchenEquipmentUaDataTypeIds {
5556
UaNodeId TrayModeEnumeration = CommercialKitchenEquipmentUaDataTypeIdsInit.initTrayModeEnumeration();
5657

5758
UaNodeId TrayTypeEnumeration = CommercialKitchenEquipmentUaDataTypeIdsInit.initTrayTypeEnumeration();
59+
60+
static Set<UaNodeId> allDataTypeIdentifiers() {
61+
return InternalCommercialKitchenEquipmentUaDataTypeIdsHelper.ALL_DATATYPE_IDENTIFIERS;
62+
}
5863
}

examples/prosys/opc30200/src/main/java/com/connectedcooking/opcua/dynamicnodemanager/examples/prosys/opc30200/model/cke/CommercialKitchenEquipmentUaDataTypeIdsInit.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
import com.prosysopc.ua.UaNodeId;
66

7+
/**
8+
* Generated on 2024-06-17 14:43:51
9+
*/
710
class CommercialKitchenEquipmentUaDataTypeIdsInit {
811
static UaNodeId initBeverageSMLEnumeration() {
912
return UaNodeId.numeric(CommercialKitchenEquipmentUaIdsInitHelper.NAMESPACE, 3014L);

0 commit comments

Comments
 (0)