Expose signatures as byte[], check array lengths in C.
[ldk-java] / src / main / java / org / ldk / structs / ChannelUpdate.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class ChannelUpdate extends CommonBase {
7         ChannelUpdate(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.ChannelUpdate_free(ptr); super.finalize();
11         }
12
13         public ChannelUpdate(ChannelUpdate orig) {
14                 super(bindings.ChannelUpdate_clone(orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_signature(ChannelUpdate this_ptr) {
19                 byte[] ret = bindings.ChannelUpdate_get_signature(this_ptr.ptr & ~1);
20                 this.ptrs_to.add(this_ptr);
21                 return ret;
22         }
23
24         public void set_signature(ChannelUpdate this_ptr, byte[] val) {
25                 bindings.ChannelUpdate_set_signature(this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         public UnsignedChannelUpdate get_contents(ChannelUpdate this_ptr) {
30                 UnsignedChannelUpdate ret = new UnsignedChannelUpdate(null, bindings.ChannelUpdate_get_contents(this_ptr.ptr & ~1));
31                 this.ptrs_to.add(this_ptr);
32                 return ret;
33         }
34
35         public void set_contents(ChannelUpdate this_ptr, UnsignedChannelUpdate val) {
36                 bindings.ChannelUpdate_set_contents(this_ptr.ptr & ~1, val.ptr & ~1);
37                 this.ptrs_to.add(this_ptr);
38                 this.ptrs_to.add(val);
39         }
40
41         public ChannelUpdate(byte[] signature_arg, UnsignedChannelUpdate contents_arg) {
42                 super(bindings.ChannelUpdate_new(signature_arg, contents_arg.ptr & ~1));
43                 this.ptrs_to.add(contents_arg);
44         }
45
46         // Skipped ChannelUpdate_write
47         // Skipped ChannelUpdate_read
48 }