container for a node
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 8 Mar 2008 13:14:57 +0000 (13:14 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 8 Mar 2008 13:14:57 +0000 (13:14 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@549 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/jsite/core/Node.java [new file with mode: 0644]

diff --git a/src/net/pterodactylus/jsite/core/Node.java b/src/net/pterodactylus/jsite/core/Node.java
new file mode 100644 (file)
index 0000000..3766498
--- /dev/null
@@ -0,0 +1,96 @@
+/*
+ * jSite2 - Node.java -
+ * Copyright © 2008 David Roden
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+package net.pterodactylus.jsite.core;
+
+/**
+ * Container for a Freenet node.
+ * 
+ * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
+ * @version $Id$
+ */
+public class Node {
+
+       /** The name of the node. */
+       private String name;
+
+       /** The hostname of the node. */
+       private String hostname;
+
+       /** The port number of the node. */
+       private int port;
+
+       /**
+        * Returns the user-given name of the node.
+        * 
+        * @return The name of the node
+        */
+       public String getName() {
+               return name;
+       }
+
+       /**
+        * Sets the user-given name of the node.
+        * 
+        * @param name
+        *            The name of the node
+        */
+       public void setName(String name) {
+               this.name = name;
+       }
+
+       /**
+        * Returns the hostname of the node.
+        * 
+        * @return The hostname of the node
+        */
+       public String getHostname() {
+               return hostname;
+       }
+
+       /**
+        * Sets the hostname of the node.
+        * 
+        * @param hostname
+        *            The hostname of the node
+        */
+       public void setHostname(String hostname) {
+               this.hostname = hostname;
+       }
+
+       /**
+        * Returns the port number of the node.
+        * 
+        * @return The port number of the node
+        */
+       public int getPort() {
+               return port;
+       }
+
+       /**
+        * Sets the port number of the node.
+        * 
+        * @param port
+        *            The port number of the node
+        */
+       public void setPort(int port) {
+               this.port = port;
+       }
+
+}