Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[ldk-java] / src / main / java / org / ldk / structs / ChannelAnnouncement.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class ChannelAnnouncement extends CommonBase {
7         ChannelAnnouncement(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.ChannelAnnouncement_free(ptr);
12         }
13
14         public ChannelAnnouncement(ChannelAnnouncement orig) {
15                 super(bindings.ChannelAnnouncement_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_node_signature_1(ChannelAnnouncement this_ptr) {
20                 byte[] ret = bindings.ChannelAnnouncement_get_node_signature_1(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_node_signature_1(ChannelAnnouncement this_ptr, byte[] val) {
26                 bindings.ChannelAnnouncement_set_node_signature_1(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public byte[] get_node_signature_2(ChannelAnnouncement this_ptr) {
31                 byte[] ret = bindings.ChannelAnnouncement_get_node_signature_2(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_node_signature_2(ChannelAnnouncement this_ptr, byte[] val) {
37                 bindings.ChannelAnnouncement_set_node_signature_2(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public byte[] get_bitcoin_signature_1(ChannelAnnouncement this_ptr) {
42                 byte[] ret = bindings.ChannelAnnouncement_get_bitcoin_signature_1(this_ptr == null ? 0 : this_ptr.ptr & ~1);
43                 this.ptrs_to.add(this_ptr);
44                 return ret;
45         }
46
47         public void set_bitcoin_signature_1(ChannelAnnouncement this_ptr, byte[] val) {
48                 bindings.ChannelAnnouncement_set_bitcoin_signature_1(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
49                 this.ptrs_to.add(this_ptr);
50         }
51
52         public byte[] get_bitcoin_signature_2(ChannelAnnouncement this_ptr) {
53                 byte[] ret = bindings.ChannelAnnouncement_get_bitcoin_signature_2(this_ptr == null ? 0 : this_ptr.ptr & ~1);
54                 this.ptrs_to.add(this_ptr);
55                 return ret;
56         }
57
58         public void set_bitcoin_signature_2(ChannelAnnouncement this_ptr, byte[] val) {
59                 bindings.ChannelAnnouncement_set_bitcoin_signature_2(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
60                 this.ptrs_to.add(this_ptr);
61         }
62
63         public UnsignedChannelAnnouncement get_contents(ChannelAnnouncement this_ptr) {
64                 UnsignedChannelAnnouncement ret = new UnsignedChannelAnnouncement(null, bindings.ChannelAnnouncement_get_contents(this_ptr == null ? 0 : this_ptr.ptr & ~1));
65                 this.ptrs_to.add(this_ptr);
66                 return ret;
67         }
68
69         public void set_contents(ChannelAnnouncement this_ptr, UnsignedChannelAnnouncement val) {
70                 bindings.ChannelAnnouncement_set_contents(this_ptr == null ? 0 : this_ptr.ptr & ~1, val == null ? 0 : val.ptr & ~1);
71                 this.ptrs_to.add(this_ptr);
72                 this.ptrs_to.add(val);
73         }
74
75         public ChannelAnnouncement(byte[] node_signature_1_arg, byte[] node_signature_2_arg, byte[] bitcoin_signature_1_arg, byte[] bitcoin_signature_2_arg, UnsignedChannelAnnouncement contents_arg) {
76                 super(bindings.ChannelAnnouncement_new(node_signature_1_arg, node_signature_2_arg, bitcoin_signature_1_arg, bitcoin_signature_2_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1));
77                 this.ptrs_to.add(contents_arg);
78         }
79
80         public byte[] write(ChannelAnnouncement obj) {
81                 byte[] ret = bindings.ChannelAnnouncement_write(obj == null ? 0 : obj.ptr & ~1);
82                 this.ptrs_to.add(obj);
83                 return ret;
84         }
85
86         public ChannelAnnouncement(byte[] ser) {
87                 super(bindings.ChannelAnnouncement_read(ser));
88         }
89
90 }