Updated bindings
[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 DataLossProtect clone() {
18                 long ret = bindings.DataLossProtect_clone(this.ptr);
19                 DataLossProtect ret_hu_conv = new DataLossProtect(null, ret);
20                 return ret_hu_conv;
21         }
22
23         public byte[] get_your_last_per_commitment_secret() {
24                 byte[] ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
25                 return ret;
26         }
27
28         public void set_your_last_per_commitment_secret(byte[] val) {
29                 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, val);
30         }
31
32         public byte[] get_my_current_per_commitment_point() {
33                 byte[] ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
34                 return ret;
35         }
36
37         public void set_my_current_per_commitment_point(byte[] val) {
38                 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, val);
39         }
40
41         public static DataLossProtect constructor_new(byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg) {
42                 long ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg);
43                 DataLossProtect ret_hu_conv = new DataLossProtect(null, ret);
44                 return ret_hu_conv;
45         }
46
47 }