Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[ldk-java] / src / main / java / org / ldk / structs / InMemoryChannelKeys.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class InMemoryChannelKeys extends CommonBase {
7         InMemoryChannelKeys(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.InMemoryChannelKeys_free(ptr);
12         }
13
14         public InMemoryChannelKeys(InMemoryChannelKeys orig) {
15                 super(bindings.InMemoryChannelKeys_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_funding_key(InMemoryChannelKeys this_ptr) {
20                 byte[] ret = bindings.InMemoryChannelKeys_get_funding_key(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_funding_key(InMemoryChannelKeys this_ptr, byte[] val) {
26                 bindings.InMemoryChannelKeys_set_funding_key(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public byte[] get_revocation_base_key(InMemoryChannelKeys this_ptr) {
31                 byte[] ret = bindings.InMemoryChannelKeys_get_revocation_base_key(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_revocation_base_key(InMemoryChannelKeys this_ptr, byte[] val) {
37                 bindings.InMemoryChannelKeys_set_revocation_base_key(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public byte[] get_payment_key(InMemoryChannelKeys this_ptr) {
42                 byte[] ret = bindings.InMemoryChannelKeys_get_payment_key(this_ptr == null ? 0 : this_ptr.ptr & ~1);
43                 this.ptrs_to.add(this_ptr);
44                 return ret;
45         }
46
47         public void set_payment_key(InMemoryChannelKeys this_ptr, byte[] val) {
48                 bindings.InMemoryChannelKeys_set_payment_key(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
49                 this.ptrs_to.add(this_ptr);
50         }
51
52         public byte[] get_delayed_payment_base_key(InMemoryChannelKeys this_ptr) {
53                 byte[] ret = bindings.InMemoryChannelKeys_get_delayed_payment_base_key(this_ptr == null ? 0 : this_ptr.ptr & ~1);
54                 this.ptrs_to.add(this_ptr);
55                 return ret;
56         }
57
58         public void set_delayed_payment_base_key(InMemoryChannelKeys this_ptr, byte[] val) {
59                 bindings.InMemoryChannelKeys_set_delayed_payment_base_key(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
60                 this.ptrs_to.add(this_ptr);
61         }
62
63         public byte[] get_htlc_base_key(InMemoryChannelKeys this_ptr) {
64                 byte[] ret = bindings.InMemoryChannelKeys_get_htlc_base_key(this_ptr == null ? 0 : this_ptr.ptr & ~1);
65                 this.ptrs_to.add(this_ptr);
66                 return ret;
67         }
68
69         public void set_htlc_base_key(InMemoryChannelKeys this_ptr, byte[] val) {
70                 bindings.InMemoryChannelKeys_set_htlc_base_key(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
71                 this.ptrs_to.add(this_ptr);
72         }
73
74         public byte[] get_commitment_seed(InMemoryChannelKeys this_ptr) {
75                 byte[] ret = bindings.InMemoryChannelKeys_get_commitment_seed(this_ptr == null ? 0 : this_ptr.ptr & ~1);
76                 this.ptrs_to.add(this_ptr);
77                 return ret;
78         }
79
80         public void set_commitment_seed(InMemoryChannelKeys this_ptr, byte[] val) {
81                 bindings.InMemoryChannelKeys_set_commitment_seed(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
82                 this.ptrs_to.add(this_ptr);
83         }
84
85         // Skipped InMemoryChannelKeys_new
86         public ChannelPublicKeys counterparty_pubkeys() {
87                 ChannelPublicKeys ret = new ChannelPublicKeys(null, bindings.InMemoryChannelKeys_counterparty_pubkeys(this.ptr));
88                 return ret;
89         }
90
91         public short counterparty_selected_contest_delay() {
92                 short ret = bindings.InMemoryChannelKeys_counterparty_selected_contest_delay(this.ptr);
93                 return ret;
94         }
95
96         public short holder_selected_contest_delay() {
97                 short ret = bindings.InMemoryChannelKeys_holder_selected_contest_delay(this.ptr);
98                 return ret;
99         }
100
101         public ChannelKeys as_ChannelKeys() {
102                 ChannelKeys ret = new ChannelKeys(null, bindings.InMemoryChannelKeys_as_ChannelKeys(this.ptr));
103                 ret.ptrs_to.add(this);
104                 return ret;
105         }
106
107         public byte[] write(InMemoryChannelKeys obj) {
108                 byte[] ret = bindings.InMemoryChannelKeys_write(obj == null ? 0 : obj.ptr & ~1);
109                 this.ptrs_to.add(obj);
110                 return ret;
111         }
112
113         public InMemoryChannelKeys(byte[] ser) {
114                 super(bindings.InMemoryChannelKeys_read(ser));
115         }
116
117 }