45345a40844b69f91d05d896af1c88e6de696cc9
[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 import org.ldk.util.*;
6 import java.util.Arrays;
7
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class InMemoryChannelKeys extends CommonBase {
10         InMemoryChannelKeys(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.InMemoryChannelKeys_free(ptr); }
15         }
16
17         public InMemoryChannelKeys clone() {
18                 long ret = bindings.InMemoryChannelKeys_clone(this.ptr);
19                 InMemoryChannelKeys ret_hu_conv = new InMemoryChannelKeys(null, ret);
20                 ret_hu_conv.ptrs_to.add(this);
21                 return ret_hu_conv;
22         }
23
24         public byte[] get_funding_key() {
25                 byte[] ret = bindings.InMemoryChannelKeys_get_funding_key(this.ptr);
26                 return ret;
27         }
28
29         public void set_funding_key(byte[] val) {
30                 bindings.InMemoryChannelKeys_set_funding_key(this.ptr, val);
31         }
32
33         public byte[] get_revocation_base_key() {
34                 byte[] ret = bindings.InMemoryChannelKeys_get_revocation_base_key(this.ptr);
35                 return ret;
36         }
37
38         public void set_revocation_base_key(byte[] val) {
39                 bindings.InMemoryChannelKeys_set_revocation_base_key(this.ptr, val);
40         }
41
42         public byte[] get_payment_key() {
43                 byte[] ret = bindings.InMemoryChannelKeys_get_payment_key(this.ptr);
44                 return ret;
45         }
46
47         public void set_payment_key(byte[] val) {
48                 bindings.InMemoryChannelKeys_set_payment_key(this.ptr, val);
49         }
50
51         public byte[] get_delayed_payment_base_key() {
52                 byte[] ret = bindings.InMemoryChannelKeys_get_delayed_payment_base_key(this.ptr);
53                 return ret;
54         }
55
56         public void set_delayed_payment_base_key(byte[] val) {
57                 bindings.InMemoryChannelKeys_set_delayed_payment_base_key(this.ptr, val);
58         }
59
60         public byte[] get_htlc_base_key() {
61                 byte[] ret = bindings.InMemoryChannelKeys_get_htlc_base_key(this.ptr);
62                 return ret;
63         }
64
65         public void set_htlc_base_key(byte[] val) {
66                 bindings.InMemoryChannelKeys_set_htlc_base_key(this.ptr, val);
67         }
68
69         public byte[] get_commitment_seed() {
70                 byte[] ret = bindings.InMemoryChannelKeys_get_commitment_seed(this.ptr);
71                 return ret;
72         }
73
74         public void set_commitment_seed(byte[] val) {
75                 bindings.InMemoryChannelKeys_set_commitment_seed(this.ptr, val);
76         }
77
78         public static InMemoryChannelKeys constructor_new(byte[] funding_key, byte[] revocation_base_key, byte[] payment_key, byte[] delayed_payment_base_key, byte[] htlc_base_key, byte[] commitment_seed, long channel_value_satoshis, TwoTuple<Long, Long> key_derivation_params) {
79                 long ret = bindings.InMemoryChannelKeys_new(funding_key, revocation_base_key, payment_key, delayed_payment_base_key, htlc_base_key, commitment_seed, channel_value_satoshis, bindings.C2Tuple_u64u64Z_new(key_derivation_params.a, key_derivation_params.b));
80                 InMemoryChannelKeys ret_hu_conv = new InMemoryChannelKeys(null, ret);
81                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
82                 return ret_hu_conv;
83         }
84
85         public ChannelPublicKeys counterparty_pubkeys() {
86                 long ret = bindings.InMemoryChannelKeys_counterparty_pubkeys(this.ptr);
87                 ChannelPublicKeys ret_hu_conv = new ChannelPublicKeys(null, ret);
88                 ret_hu_conv.ptrs_to.add(this);
89                 return ret_hu_conv;
90         }
91
92         public short counterparty_selected_contest_delay() {
93                 short ret = bindings.InMemoryChannelKeys_counterparty_selected_contest_delay(this.ptr);
94                 return ret;
95         }
96
97         public short holder_selected_contest_delay() {
98                 short ret = bindings.InMemoryChannelKeys_holder_selected_contest_delay(this.ptr);
99                 return ret;
100         }
101
102         public boolean is_outbound() {
103                 boolean ret = bindings.InMemoryChannelKeys_is_outbound(this.ptr);
104                 return ret;
105         }
106
107         public OutPoint funding_outpoint() {
108                 long ret = bindings.InMemoryChannelKeys_funding_outpoint(this.ptr);
109                 OutPoint ret_hu_conv = new OutPoint(null, ret);
110                 ret_hu_conv.ptrs_to.add(this);
111                 return ret_hu_conv;
112         }
113
114         public ChannelTransactionParameters get_channel_parameters() {
115                 long ret = bindings.InMemoryChannelKeys_get_channel_parameters(this.ptr);
116                 ChannelTransactionParameters ret_hu_conv = new ChannelTransactionParameters(null, ret);
117                 ret_hu_conv.ptrs_to.add(this);
118                 return ret_hu_conv;
119         }
120
121         public ChannelKeys as_ChannelKeys() {
122                 long ret = bindings.InMemoryChannelKeys_as_ChannelKeys(this.ptr);
123                 ChannelKeys ret_hu_conv = new ChannelKeys(null, ret);
124                 ret_hu_conv.ptrs_to.add(this);
125                 return ret_hu_conv;
126         }
127
128         public byte[] write() {
129                 byte[] ret = bindings.InMemoryChannelKeys_write(this.ptr);
130                 return ret;
131         }
132
133         public static Result_InMemoryChannelKeysDecodeErrorZ constructor_read(byte[] ser) {
134                 long ret = bindings.InMemoryChannelKeys_read(ser);
135                 Result_InMemoryChannelKeysDecodeErrorZ ret_hu_conv = Result_InMemoryChannelKeysDecodeErrorZ.constr_from_ptr(ret);
136                 return ret_hu_conv;
137         }
138
139 }