Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[ldk-java] / src / main / java / org / ldk / structs / RevokeAndACK.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class RevokeAndACK extends CommonBase {
7         RevokeAndACK(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.RevokeAndACK_free(ptr);
12         }
13
14         public RevokeAndACK(RevokeAndACK orig) {
15                 super(bindings.RevokeAndACK_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_channel_id(RevokeAndACK this_ptr) {
20                 byte[] ret = bindings.RevokeAndACK_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_channel_id(RevokeAndACK this_ptr, byte[] val) {
26                 bindings.RevokeAndACK_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public byte[] get_per_commitment_secret(RevokeAndACK this_ptr) {
31                 byte[] ret = bindings.RevokeAndACK_get_per_commitment_secret(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_per_commitment_secret(RevokeAndACK this_ptr, byte[] val) {
37                 bindings.RevokeAndACK_set_per_commitment_secret(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public byte[] get_next_per_commitment_point(RevokeAndACK this_ptr) {
42                 byte[] ret = bindings.RevokeAndACK_get_next_per_commitment_point(this_ptr == null ? 0 : this_ptr.ptr & ~1);
43                 this.ptrs_to.add(this_ptr);
44                 return ret;
45         }
46
47         public void set_next_per_commitment_point(RevokeAndACK this_ptr, byte[] val) {
48                 bindings.RevokeAndACK_set_next_per_commitment_point(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
49                 this.ptrs_to.add(this_ptr);
50         }
51
52         public RevokeAndACK(byte[] channel_id_arg, byte[] per_commitment_secret_arg, byte[] next_per_commitment_point_arg) {
53                 super(bindings.RevokeAndACK_new(channel_id_arg, per_commitment_secret_arg, next_per_commitment_point_arg));
54         }
55
56         public byte[] write(RevokeAndACK obj) {
57                 byte[] ret = bindings.RevokeAndACK_write(obj == null ? 0 : obj.ptr & ~1);
58                 this.ptrs_to.add(obj);
59                 return ret;
60         }
61
62         public RevokeAndACK(byte[] ser) {
63                 super(bindings.RevokeAndACK_read(ser));
64         }
65
66 }