X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FGetNode.java;h=72b90c49f3124cd92c1bc2249485161e6f960382;hb=e591c6488b692e3dfcf2efd1905d399f39c6067f;hp=34198606f9c1ed2cdca5feeae5c389d5fcec960a;hpb=b171126719c983b590c51f22eb60a3e0afdf1fb9;p=jFCPlib.git diff --git a/src/main/java/net/pterodactylus/fcp/GetNode.java b/src/main/java/net/pterodactylus/fcp/GetNode.java index 3419860..72b90c4 100644 --- a/src/main/java/net/pterodactylus/fcp/GetNode.java +++ b/src/main/java/net/pterodactylus/fcp/GetNode.java @@ -18,6 +18,8 @@ package net.pterodactylus.fcp; +import java.util.Optional; + /** * The “GetNode” command returns the darknet or opennet noderef of the node, * optionally including private and volatile data. @@ -49,7 +51,12 @@ public class GetNode extends FcpMessage { * true to include volatile data in the noderef */ public GetNode(Boolean giveOpennetRef, Boolean withPrivate, Boolean withVolatile) { + this(null, giveOpennetRef, withPrivate, withVolatile); + } + + public GetNode(String identifier, Boolean giveOpennetRef, Boolean withPrivate, Boolean withVolatile) { super("GetNode"); + Optional.ofNullable(identifier).ifPresent(i -> setField("Identifier", i)); if (giveOpennetRef != null) { setField("GiveOpennetRef", String.valueOf(giveOpennetRef)); }