From 34f87eac013c2a6c29101af7e4654bd91fcd1df8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sun, 14 Nov 2010 12:00:37 +0100 Subject: [PATCH] Store client information in Sone. --- .../java/net/pterodactylus/sone/data/Sone.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/main/java/net/pterodactylus/sone/data/Sone.java b/src/main/java/net/pterodactylus/sone/data/Sone.java index a0f87b2..7d4f7ef 100644 --- a/src/main/java/net/pterodactylus/sone/data/Sone.java +++ b/src/main/java/net/pterodactylus/sone/data/Sone.java @@ -81,6 +81,9 @@ public class Sone { /** The profile of this Sone. */ private volatile Profile profile = new Profile(); + /** The client used by the Sone. */ + private volatile Client client; + /** All friend Sones. */ private final Set friendSones = Collections.synchronizedSet(new HashSet()); @@ -281,6 +284,27 @@ public class Sone { } /** + * Returns the client used by this Sone. + * + * @return The client used by this Sone, or {@code null} + */ + public Client getClient() { + return client; + } + + /** + * Sets the client used by this Sone. + * + * @param client + * The client used by this Sone, or {@code null} + * @return This Sone (for method chaining) + */ + public Sone setClient(Client client) { + this.client = client; + return this; + } + + /** * Returns all friend Sones of this Sone. * * @return The friend Sones of this Sone -- 2.7.4