From: David ‘Bombe’ Roden Date: Sat, 8 Mar 2008 13:14:57 +0000 (+0000) Subject: container for a node X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=811c8f26e0ea0f1418451acb34ddabedafdbc3b3;p=jSite2.git container for a node git-svn-id: http://trooper/svn/projects/jSite/trunk@549 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/jsite/core/Node.java b/src/net/pterodactylus/jsite/core/Node.java new file mode 100644 index 0000000..3766498 --- /dev/null +++ b/src/net/pterodactylus/jsite/core/Node.java @@ -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 <bombe@freenetproject.org> + * @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; + } + +}