[Java] Update auto-generated bindings to 0.0.117
[ldk-java] / src / main / java / org / ldk / structs / BlindedHop.java
index 66e53ae14b31405bfa13a075c821c1a657d33674..9ca3a8ddf87b963e755eab1b32b158b23dceb291 100644 (file)
@@ -9,8 +9,9 @@ import javax.annotation.Nullable;
 
 
 /**
- * Used to construct the blinded hops portion of a blinded path. These hops cannot be identified
- * by outside observers and thus can be used to hide the identity of the recipient.
+ * An encrypted payload and node id corresponding to a hop in a payment or onion message path, to
+ * be encoded in the sender's onion packet. These hops cannot be identified by outside observers
+ * and thus can be used to hide the identity of the recipient.
  */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class BlindedHop extends CommonBase {
@@ -21,6 +22,57 @@ public class BlindedHop extends CommonBase {
                if (ptr != 0) { bindings.BlindedHop_free(ptr); }
        }
 
+       /**
+        * The blinded node id of this hop in a [`BlindedPath`].
+        */
+       public byte[] get_blinded_node_id() {
+               byte[] ret = bindings.BlindedHop_get_blinded_node_id(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       /**
+        * The blinded node id of this hop in a [`BlindedPath`].
+        */
+       public void set_blinded_node_id(byte[] val) {
+               bindings.BlindedHop_set_blinded_node_id(this.ptr, InternalUtils.check_arr_len(val, 33));
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
+       }
+
+       /**
+        * The encrypted payload intended for this hop in a [`BlindedPath`].
+        * 
+        * Returns a copy of the field.
+        */
+       public byte[] get_encrypted_payload() {
+               byte[] ret = bindings.BlindedHop_get_encrypted_payload(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       /**
+        * The encrypted payload intended for this hop in a [`BlindedPath`].
+        */
+       public void set_encrypted_payload(byte[] val) {
+               bindings.BlindedHop_set_encrypted_payload(this.ptr, val);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
+       }
+
+       /**
+        * Constructs a new BlindedHop given each field
+        */
+       public static BlindedHop of(byte[] blinded_node_id_arg, byte[] encrypted_payload_arg) {
+               long ret = bindings.BlindedHop_new(InternalUtils.check_arr_len(blinded_node_id_arg, 33), encrypted_payload_arg);
+               Reference.reachabilityFence(blinded_node_id_arg);
+               Reference.reachabilityFence(encrypted_payload_arg);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.BlindedHop ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BlindedHop(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
        long clone_ptr() {
                long ret = bindings.BlindedHop_clone_ptr(this.ptr);
                Reference.reachabilityFence(this);