d28bf4609fd78b1ad8f27e2b0ec71a04be421c19
[ldk-java] / src / main / java / org / ldk / structs / UpdateFulfillHTLC.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 UpdateFulfillHTLC extends CommonBase {
10         UpdateFulfillHTLC(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.UpdateFulfillHTLC_free(ptr); }
15         }
16
17         public static UpdateFulfillHTLC constructor_clone(UpdateFulfillHTLC orig) {
18                 long ret = bindings.UpdateFulfillHTLC_clone(orig == null ? 0 : orig.ptr & ~1);
19                 UpdateFulfillHTLC ret_hu_conv = new UpdateFulfillHTLC(null, ret);
20                 ret_hu_conv.ptrs_to.add(orig);
21                 return ret_hu_conv;
22         }
23
24         public byte[] get_channel_id() {
25                 byte[] ret = bindings.UpdateFulfillHTLC_get_channel_id(this.ptr);
26                 return ret;
27         }
28
29         public void set_channel_id(byte[] val) {
30                 bindings.UpdateFulfillHTLC_set_channel_id(this.ptr, val);
31         }
32
33         public long get_htlc_id() {
34                 long ret = bindings.UpdateFulfillHTLC_get_htlc_id(this.ptr);
35                 return ret;
36         }
37
38         public void set_htlc_id(long val) {
39                 bindings.UpdateFulfillHTLC_set_htlc_id(this.ptr, val);
40         }
41
42         public byte[] get_payment_preimage() {
43                 byte[] ret = bindings.UpdateFulfillHTLC_get_payment_preimage(this.ptr);
44                 return ret;
45         }
46
47         public void set_payment_preimage(byte[] val) {
48                 bindings.UpdateFulfillHTLC_set_payment_preimage(this.ptr, val);
49         }
50
51         public static UpdateFulfillHTLC constructor_new(byte[] channel_id_arg, long htlc_id_arg, byte[] payment_preimage_arg) {
52                 long ret = bindings.UpdateFulfillHTLC_new(channel_id_arg, htlc_id_arg, payment_preimage_arg);
53                 UpdateFulfillHTLC ret_hu_conv = new UpdateFulfillHTLC(null, ret);
54                 return ret_hu_conv;
55         }
56
57         public byte[] write(UpdateFulfillHTLC obj) {
58                 byte[] ret = bindings.UpdateFulfillHTLC_write(obj == null ? 0 : obj.ptr & ~1);
59                 this.ptrs_to.add(obj);
60                 return ret;
61         }
62
63         public static UpdateFulfillHTLC constructor_read(byte[] ser) {
64                 long ret = bindings.UpdateFulfillHTLC_read(ser);
65                 UpdateFulfillHTLC ret_hu_conv = new UpdateFulfillHTLC(null, ret);
66                 return ret_hu_conv;
67         }
68
69 }