[Java] Update auto-generated Java bindings to LDK 0.0.121
[ldk-java] / src / main / java / org / ldk / structs / DelayedPaymentOutputDescriptor.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 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10
11 /**
12  * Information about a spendable output to a P2WSH script.
13  * 
14  * See [`SpendableOutputDescriptor::DelayedPaymentOutput`] for more details on how to spend this.
15  */
16 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
17 public class DelayedPaymentOutputDescriptor extends CommonBase {
18         DelayedPaymentOutputDescriptor(Object _dummy, long ptr) { super(ptr); }
19         @Override @SuppressWarnings("deprecation")
20         protected void finalize() throws Throwable {
21                 super.finalize();
22                 if (ptr != 0) { bindings.DelayedPaymentOutputDescriptor_free(ptr); }
23         }
24
25         /**
26          * The outpoint which is spendable.
27          */
28         public OutPoint get_outpoint() {
29                 long ret = bindings.DelayedPaymentOutputDescriptor_get_outpoint(this.ptr);
30                 Reference.reachabilityFence(this);
31                 if (ret >= 0 && ret <= 4096) { return null; }
32                 org.ldk.structs.OutPoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OutPoint(null, ret); }
33                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
34                 return ret_hu_conv;
35         }
36
37         /**
38          * The outpoint which is spendable.
39          */
40         public void set_outpoint(org.ldk.structs.OutPoint val) {
41                 bindings.DelayedPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr);
42                 Reference.reachabilityFence(this);
43                 Reference.reachabilityFence(val);
44                 if (this != null) { this.ptrs_to.add(val); };
45         }
46
47         /**
48          * Per commitment point to derive the delayed payment key by key holder.
49          */
50         public byte[] get_per_commitment_point() {
51                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_per_commitment_point(this.ptr);
52                 Reference.reachabilityFence(this);
53                 return ret;
54         }
55
56         /**
57          * Per commitment point to derive the delayed payment key by key holder.
58          */
59         public void set_per_commitment_point(byte[] val) {
60                 bindings.DelayedPaymentOutputDescriptor_set_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33));
61                 Reference.reachabilityFence(this);
62                 Reference.reachabilityFence(val);
63         }
64
65         /**
66          * The `nSequence` value which must be set in the spending input to satisfy the `OP_CSV` in
67          * the witness_script.
68          */
69         public short get_to_self_delay() {
70                 short ret = bindings.DelayedPaymentOutputDescriptor_get_to_self_delay(this.ptr);
71                 Reference.reachabilityFence(this);
72                 return ret;
73         }
74
75         /**
76          * The `nSequence` value which must be set in the spending input to satisfy the `OP_CSV` in
77          * the witness_script.
78          */
79         public void set_to_self_delay(short val) {
80                 bindings.DelayedPaymentOutputDescriptor_set_to_self_delay(this.ptr, val);
81                 Reference.reachabilityFence(this);
82                 Reference.reachabilityFence(val);
83         }
84
85         /**
86          * The output which is referenced by the given outpoint.
87          */
88         public TxOut get_output() {
89                 long ret = bindings.DelayedPaymentOutputDescriptor_get_output(this.ptr);
90                 Reference.reachabilityFence(this);
91                 if (ret >= 0 && ret <= 4096) { return null; }
92                 TxOut ret_conv = new TxOut(null, ret);
93                 return ret_conv;
94         }
95
96         /**
97          * The output which is referenced by the given outpoint.
98          */
99         public void set_output(org.ldk.structs.TxOut val) {
100                 bindings.DelayedPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
101                 Reference.reachabilityFence(this);
102                 Reference.reachabilityFence(val);
103         }
104
105         /**
106          * The revocation point specific to the commitment transaction which was broadcast. Used to
107          * derive the witnessScript for this output.
108          */
109         public RevocationKey get_revocation_pubkey() {
110                 long ret = bindings.DelayedPaymentOutputDescriptor_get_revocation_pubkey(this.ptr);
111                 Reference.reachabilityFence(this);
112                 if (ret >= 0 && ret <= 4096) { return null; }
113                 org.ldk.structs.RevocationKey ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.RevocationKey(null, ret); }
114                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
115                 return ret_hu_conv;
116         }
117
118         /**
119          * The revocation point specific to the commitment transaction which was broadcast. Used to
120          * derive the witnessScript for this output.
121          */
122         public void set_revocation_pubkey(org.ldk.structs.RevocationKey val) {
123                 bindings.DelayedPaymentOutputDescriptor_set_revocation_pubkey(this.ptr, val == null ? 0 : val.ptr);
124                 Reference.reachabilityFence(this);
125                 Reference.reachabilityFence(val);
126                 if (this != null) { this.ptrs_to.add(val); };
127         }
128
129         /**
130          * Arbitrary identification information returned by a call to [`ChannelSigner::channel_keys_id`].
131          * This may be useful in re-deriving keys used in the channel to spend the output.
132          */
133         public byte[] get_channel_keys_id() {
134                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
135                 Reference.reachabilityFence(this);
136                 return ret;
137         }
138
139         /**
140          * Arbitrary identification information returned by a call to [`ChannelSigner::channel_keys_id`].
141          * This may be useful in re-deriving keys used in the channel to spend the output.
142          */
143         public void set_channel_keys_id(byte[] val) {
144                 bindings.DelayedPaymentOutputDescriptor_set_channel_keys_id(this.ptr, InternalUtils.check_arr_len(val, 32));
145                 Reference.reachabilityFence(this);
146                 Reference.reachabilityFence(val);
147         }
148
149         /**
150          * The value of the channel which this output originated from, possibly indirectly.
151          */
152         public long get_channel_value_satoshis() {
153                 long ret = bindings.DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
154                 Reference.reachabilityFence(this);
155                 return ret;
156         }
157
158         /**
159          * The value of the channel which this output originated from, possibly indirectly.
160          */
161         public void set_channel_value_satoshis(long val) {
162                 bindings.DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
163                 Reference.reachabilityFence(this);
164                 Reference.reachabilityFence(val);
165         }
166
167         /**
168          * Constructs a new DelayedPaymentOutputDescriptor given each field
169          */
170         public static DelayedPaymentOutputDescriptor of(org.ldk.structs.OutPoint outpoint_arg, byte[] per_commitment_point_arg, short to_self_delay_arg, org.ldk.structs.TxOut output_arg, org.ldk.structs.RevocationKey revocation_pubkey_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg) {
171                 long ret = bindings.DelayedPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr, InternalUtils.check_arr_len(per_commitment_point_arg, 33), to_self_delay_arg, output_arg.ptr, revocation_pubkey_arg == null ? 0 : revocation_pubkey_arg.ptr, InternalUtils.check_arr_len(channel_keys_id_arg, 32), channel_value_satoshis_arg);
172                 Reference.reachabilityFence(outpoint_arg);
173                 Reference.reachabilityFence(per_commitment_point_arg);
174                 Reference.reachabilityFence(to_self_delay_arg);
175                 Reference.reachabilityFence(output_arg);
176                 Reference.reachabilityFence(revocation_pubkey_arg);
177                 Reference.reachabilityFence(channel_keys_id_arg);
178                 Reference.reachabilityFence(channel_value_satoshis_arg);
179                 if (ret >= 0 && ret <= 4096) { return null; }
180                 org.ldk.structs.DelayedPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.DelayedPaymentOutputDescriptor(null, ret); }
181                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
182                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(outpoint_arg); };
183                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(revocation_pubkey_arg); };
184                 return ret_hu_conv;
185         }
186
187         long clone_ptr() {
188                 long ret = bindings.DelayedPaymentOutputDescriptor_clone_ptr(this.ptr);
189                 Reference.reachabilityFence(this);
190                 return ret;
191         }
192
193         /**
194          * Creates a copy of the DelayedPaymentOutputDescriptor
195          */
196         public DelayedPaymentOutputDescriptor clone() {
197                 long ret = bindings.DelayedPaymentOutputDescriptor_clone(this.ptr);
198                 Reference.reachabilityFence(this);
199                 if (ret >= 0 && ret <= 4096) { return null; }
200                 org.ldk.structs.DelayedPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.DelayedPaymentOutputDescriptor(null, ret); }
201                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
202                 return ret_hu_conv;
203         }
204
205         /**
206          * Generates a non-cryptographic 64-bit hash of the DelayedPaymentOutputDescriptor.
207          */
208         public long hash() {
209                 long ret = bindings.DelayedPaymentOutputDescriptor_hash(this.ptr);
210                 Reference.reachabilityFence(this);
211                 return ret;
212         }
213
214         @Override public int hashCode() {
215                 return (int)this.hash();
216         }
217         /**
218          * Checks if two DelayedPaymentOutputDescriptors contain equal inner contents.
219          * This ignores pointers and is_owned flags and looks at the values in fields.
220          * Two objects with NULL inner values will be considered "equal" here.
221          */
222         public boolean eq(org.ldk.structs.DelayedPaymentOutputDescriptor b) {
223                 boolean ret = bindings.DelayedPaymentOutputDescriptor_eq(this.ptr, b == null ? 0 : b.ptr);
224                 Reference.reachabilityFence(this);
225                 Reference.reachabilityFence(b);
226                 if (this != null) { this.ptrs_to.add(b); };
227                 return ret;
228         }
229
230         @Override public boolean equals(Object o) {
231                 if (!(o instanceof DelayedPaymentOutputDescriptor)) return false;
232                 return this.eq((DelayedPaymentOutputDescriptor)o);
233         }
234         /**
235          * Serialize the DelayedPaymentOutputDescriptor object into a byte array which can be read by DelayedPaymentOutputDescriptor_read
236          */
237         public byte[] write() {
238                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_write(this.ptr);
239                 Reference.reachabilityFence(this);
240                 return ret;
241         }
242
243         /**
244          * Read a DelayedPaymentOutputDescriptor from a byte array, created by DelayedPaymentOutputDescriptor_write
245          */
246         public static Result_DelayedPaymentOutputDescriptorDecodeErrorZ read(byte[] ser) {
247                 long ret = bindings.DelayedPaymentOutputDescriptor_read(ser);
248                 Reference.reachabilityFence(ser);
249                 if (ret >= 0 && ret <= 4096) { return null; }
250                 Result_DelayedPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_DelayedPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);
251                 return ret_hu_conv;
252         }
253
254 }