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