This is an automated email from the ASF dual-hosted git repository.
jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/camel-main by this push:
new 163a755fb0 fixed jt400
163a755fb0 is described below
commit 163a755fb0dd340c7e07618769e607e638718b9d
Author: Jiri Ondrusek <[email protected]>
AuthorDate: Tue Apr 8 09:05:42 2025 +0200
fixed jt400
---
.../main/java/com/ibm/as400/access/AS400ImplNative.java | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git
a/extensions/jt400/runtime/src/main/java/com/ibm/as400/access/AS400ImplNative.java
b/extensions/jt400/runtime/src/main/java/com/ibm/as400/access/AS400ImplNative.java
index c4965f62db..1005dfd45d 100644
---
a/extensions/jt400/runtime/src/main/java/com/ibm/as400/access/AS400ImplNative.java
+++
b/extensions/jt400/runtime/src/main/java/com/ibm/as400/access/AS400ImplNative.java
@@ -33,4 +33,21 @@ public class AS400ImplNative {
static void swapBackNative(byte[] swapToPH, byte[] swapFromPH) throws
NativeException {
throw new UnsupportedOperationException();
}
+
+ static void swapToProfileHandleNative(byte[] swapToPH, byte[]
swapFromPH_temp) {
+ throw new UnsupportedOperationException();
+ }
+
+ static void swapBackAndReleaseNative(byte[] bytes) {
+ throw new UnsupportedOperationException();
+ }
+
+ static void createProfileHandle2Native(byte[] bytes1, String s1, byte[]
bytes2, char[] bytes3, String s2, String s3, int i1,
+ String s4, int i2) {
+ throw new UnsupportedOperationException();
+ }
+
+ static void releaseProfileHandleNative(byte[] bytes) {
+ throw new UnsupportedOperationException();
+ }
}