d887797c49d8fea0c1392219fd940425dd3aeba5
[ldk-java] / src / main / java / org / ldk / structs / RevokeAndACK.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class RevokeAndACK extends CommonBase {
7         RevokeAndACK(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.RevokeAndACK_free(ptr); super.finalize();
11         }
12
13         public RevokeAndACK(RevokeAndACK orig) {
14                 super(bindings.RevokeAndACK_clone(orig == null ? 0 : orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_channel_id(RevokeAndACK this_ptr) {
19                 byte[] ret = bindings.RevokeAndACK_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
20                 this.ptrs_to.add(this_ptr);
21                 return ret;
22         }
23
24         public void set_channel_id(RevokeAndACK this_ptr, byte[] val) {
25                 bindings.RevokeAndACK_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         public byte[] get_per_commitment_secret(RevokeAndACK this_ptr) {
30                 byte[] ret = bindings.RevokeAndACK_get_per_commitment_secret(this_ptr == null ? 0 : this_ptr.ptr & ~1);
31                 this.ptrs_to.add(this_ptr);
32                 return ret;
33         }
34
35         public void set_per_commitment_secret(RevokeAndACK this_ptr, byte[] val) {
36                 bindings.RevokeAndACK_set_per_commitment_secret(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
37                 this.ptrs_to.add(this_ptr);
38         }
39
40         public byte[] get_next_per_commitment_point(RevokeAndACK this_ptr) {
41                 byte[] ret = bindings.RevokeAndACK_get_next_per_commitment_point(this_ptr == null ? 0 : this_ptr.ptr & ~1);
42                 this.ptrs_to.add(this_ptr);
43                 return ret;
44         }
45
46         public void set_next_per_commitment_point(RevokeAndACK this_ptr, byte[] val) {
47                 bindings.RevokeAndACK_set_next_per_commitment_point(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
48                 this.ptrs_to.add(this_ptr);
49         }
50
51         public RevokeAndACK(byte[] channel_id_arg, byte[] per_commitment_secret_arg, byte[] next_per_commitment_point_arg) {
52                 super(bindings.RevokeAndACK_new(channel_id_arg, per_commitment_secret_arg, next_per_commitment_point_arg));
53         }
54
55         // Skipped RevokeAndACK_write
56         public RevokeAndACK(byte[] ser) {
57                 super(bindings.RevokeAndACK_read(ser));
58         }
59
60 }