X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FForwardTlvs.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FForwardTlvs.java;h=0dcc10632e28705be24a9ce081ae54b97d0f0767;hb=07d5d868dfe064aadb28a7f7ca6002c16be9723d;hp=0000000000000000000000000000000000000000;hpb=32973ea2749f8efd05b543dd774763513013b38b;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ForwardTlvs.java b/src/main/java/org/ldk/structs/ForwardTlvs.java new file mode 100644 index 00000000..0dcc1063 --- /dev/null +++ b/src/main/java/org/ldk/structs/ForwardTlvs.java @@ -0,0 +1,158 @@ +package org.ldk.structs; + +import org.ldk.impl.bindings; +import org.ldk.enums.*; +import org.ldk.util.*; +import java.util.Arrays; +import java.lang.ref.Reference; +import javax.annotation.Nullable; + + +/** + * Data to construct a [`BlindedHop`] for forwarding a payment. + */ +@SuppressWarnings("unchecked") // We correctly assign various generic arrays +public class ForwardTlvs extends CommonBase { + ForwardTlvs(Object _dummy, long ptr) { super(ptr); } + @Override @SuppressWarnings("deprecation") + protected void finalize() throws Throwable { + super.finalize(); + if (ptr != 0) { bindings.ForwardTlvs_free(ptr); } + } + + /** + * The short channel id this payment should be forwarded out over. + */ + public long get_short_channel_id() { + long ret = bindings.ForwardTlvs_get_short_channel_id(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * The short channel id this payment should be forwarded out over. + */ + public void set_short_channel_id(long val) { + bindings.ForwardTlvs_set_short_channel_id(this.ptr, val); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * Payment parameters for relaying over [`Self::short_channel_id`]. + */ + public PaymentRelay get_payment_relay() { + long ret = bindings.ForwardTlvs_get_payment_relay(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.PaymentRelay ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PaymentRelay(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * Payment parameters for relaying over [`Self::short_channel_id`]. + */ + public void set_payment_relay(org.ldk.structs.PaymentRelay val) { + bindings.ForwardTlvs_set_payment_relay(this.ptr, val == null ? 0 : val.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; + } + + /** + * Payment constraints for relaying over [`Self::short_channel_id`]. + */ + public PaymentConstraints get_payment_constraints() { + long ret = bindings.ForwardTlvs_get_payment_constraints(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.PaymentConstraints ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PaymentConstraints(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * Payment constraints for relaying over [`Self::short_channel_id`]. + */ + public void set_payment_constraints(org.ldk.structs.PaymentConstraints val) { + bindings.ForwardTlvs_set_payment_constraints(this.ptr, val == null ? 0 : val.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; + } + + /** + * Supported and required features when relaying a payment onion containing this object's + * corresponding [`BlindedHop::encrypted_payload`]. + * + * [`BlindedHop::encrypted_payload`]: crate::blinded_path::BlindedHop::encrypted_payload + */ + public BlindedHopFeatures get_features() { + long ret = bindings.ForwardTlvs_get_features(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.BlindedHopFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BlindedHopFeatures(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * Supported and required features when relaying a payment onion containing this object's + * corresponding [`BlindedHop::encrypted_payload`]. + * + * [`BlindedHop::encrypted_payload`]: crate::blinded_path::BlindedHop::encrypted_payload + */ + public void set_features(org.ldk.structs.BlindedHopFeatures val) { + bindings.ForwardTlvs_set_features(this.ptr, val == null ? 0 : val.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; + } + + /** + * Constructs a new ForwardTlvs given each field + */ + public static ForwardTlvs of(long short_channel_id_arg, org.ldk.structs.PaymentRelay payment_relay_arg, org.ldk.structs.PaymentConstraints payment_constraints_arg, org.ldk.structs.BlindedHopFeatures features_arg) { + long ret = bindings.ForwardTlvs_new(short_channel_id_arg, payment_relay_arg == null ? 0 : payment_relay_arg.ptr, payment_constraints_arg == null ? 0 : payment_constraints_arg.ptr, features_arg == null ? 0 : features_arg.ptr); + Reference.reachabilityFence(short_channel_id_arg); + Reference.reachabilityFence(payment_relay_arg); + Reference.reachabilityFence(payment_constraints_arg); + Reference.reachabilityFence(features_arg); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ForwardTlvs ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ForwardTlvs(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(payment_relay_arg); }; + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(payment_constraints_arg); }; + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(features_arg); }; + return ret_hu_conv; + } + + long clone_ptr() { + long ret = bindings.ForwardTlvs_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Creates a copy of the ForwardTlvs + */ + public ForwardTlvs clone() { + long ret = bindings.ForwardTlvs_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ForwardTlvs ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ForwardTlvs(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * Serialize the ForwardTlvs object into a byte array which can be read by ForwardTlvs_read + */ + public byte[] write() { + byte[] ret = bindings.ForwardTlvs_write(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + +}