Merge pull request #33 from TheBlueMatt/main
[ldk-java] / src / main / java / org / ldk / structs / ClosingSigned.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 javax.annotation.Nullable;
8
9
10 /**
11  * A closing_signed message to be sent or received from a peer
12  */
13 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
14 public class ClosingSigned extends CommonBase {
15         ClosingSigned(Object _dummy, long ptr) { super(ptr); }
16         @Override @SuppressWarnings("deprecation")
17         protected void finalize() throws Throwable {
18                 super.finalize();
19                 if (ptr != 0) { bindings.ClosingSigned_free(ptr); }
20         }
21
22         /**
23          * The channel ID
24          */
25         public byte[] get_channel_id() {
26                 byte[] ret = bindings.ClosingSigned_get_channel_id(this.ptr);
27                 return ret;
28         }
29
30         /**
31          * The channel ID
32          */
33         public void set_channel_id(byte[] val) {
34                 bindings.ClosingSigned_set_channel_id(this.ptr, val);
35         }
36
37         /**
38          * The proposed total fee for the closing transaction
39          */
40         public long get_fee_satoshis() {
41                 long ret = bindings.ClosingSigned_get_fee_satoshis(this.ptr);
42                 return ret;
43         }
44
45         /**
46          * The proposed total fee for the closing transaction
47          */
48         public void set_fee_satoshis(long val) {
49                 bindings.ClosingSigned_set_fee_satoshis(this.ptr, val);
50         }
51
52         /**
53          * A signature on the closing transaction
54          */
55         public byte[] get_signature() {
56                 byte[] ret = bindings.ClosingSigned_get_signature(this.ptr);
57                 return ret;
58         }
59
60         /**
61          * A signature on the closing transaction
62          */
63         public void set_signature(byte[] val) {
64                 bindings.ClosingSigned_set_signature(this.ptr, val);
65         }
66
67         /**
68          * Constructs a new ClosingSigned given each field
69          */
70         public static ClosingSigned of(byte[] channel_id_arg, long fee_satoshis_arg, byte[] signature_arg) {
71                 long ret = bindings.ClosingSigned_new(channel_id_arg, fee_satoshis_arg, signature_arg);
72                 if (ret < 1024) { return null; }
73                 ClosingSigned ret_hu_conv = new ClosingSigned(null, ret);
74                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
75                 return ret_hu_conv;
76         }
77
78         /**
79          * Creates a copy of the ClosingSigned
80          */
81         public ClosingSigned clone() {
82                 long ret = bindings.ClosingSigned_clone(this.ptr);
83                 if (ret < 1024) { return null; }
84                 ClosingSigned ret_hu_conv = new ClosingSigned(null, ret);
85                 ret_hu_conv.ptrs_to.add(this);
86                 return ret_hu_conv;
87         }
88
89         /**
90          * Serialize the ClosingSigned object into a byte array which can be read by ClosingSigned_read
91          */
92         public byte[] write() {
93                 byte[] ret = bindings.ClosingSigned_write(this.ptr);
94                 return ret;
95         }
96
97         /**
98          * Read a ClosingSigned from a byte array, created by ClosingSigned_write
99          */
100         public static Result_ClosingSignedDecodeErrorZ read(byte[] ser) {
101                 long ret = bindings.ClosingSigned_read(ser);
102                 if (ret < 1024) { return null; }
103                 Result_ClosingSignedDecodeErrorZ ret_hu_conv = Result_ClosingSignedDecodeErrorZ.constr_from_ptr(ret);
104                 return ret_hu_conv;
105         }
106
107 }