4d0e79d4921dfa4bc9e495186cf4fa6132633046
[ldk-java] / src / main / java / org / ldk / structs / DataLossProtect.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 DataLossProtect extends CommonBase {
10         DataLossProtect(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.DataLossProtect_free(ptr); }
15         }
16
17         public byte[] get_your_last_per_commitment_secret() {
18                 byte[] ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
19                 return ret;
20         }
21
22         public void set_your_last_per_commitment_secret(byte[] val) {
23                 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, val);
24         }
25
26         public byte[] get_my_current_per_commitment_point() {
27                 byte[] ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
28                 return ret;
29         }
30
31         public void set_my_current_per_commitment_point(byte[] val) {
32                 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, val);
33         }
34
35         public static DataLossProtect constructor_new(byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg) {
36                 long ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg);
37                 DataLossProtect ret_hu_conv = new DataLossProtect(null, ret);
38                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
39                 return ret_hu_conv;
40         }
41
42         public DataLossProtect clone() {
43                 long ret = bindings.DataLossProtect_clone(this.ptr);
44                 DataLossProtect ret_hu_conv = new DataLossProtect(null, ret);
45                 ret_hu_conv.ptrs_to.add(this);
46                 return ret_hu_conv;
47         }
48
49 }