3 * Copyright © 2008 David Roden
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 package net.pterodactylus.jsite.core;
23 * Container for a Freenet node.
25 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
30 /** The name of the node. */
33 /** The hostname of the node. */
34 private String hostname;
36 /** The port number of the node. */
39 /** Whether the node is running on the same machine as jSite. */
40 private boolean sameMachine;
43 * Returns the user-given name of the node.
45 * @return The name of the node
47 public String getName() {
52 * Sets the user-given name of the node.
55 * The name of the node
57 public void setName(String name) {
62 * Returns the hostname of the node.
64 * @return The hostname of the node
66 public String getHostname() {
71 * Sets the hostname of the node.
74 * The hostname of the node
76 public void setHostname(String hostname) {
77 this.hostname = hostname;
81 * Returns the port number of the node.
83 * @return The port number of the node
85 public int getPort() {
90 * Sets the port number of the node.
93 * The port number of the node
95 public void setPort(int port) {
100 * Returns whether this node is running on the same machine as jSite.
102 * @return the sameMachine <code>true</code> if, and only if, the node is
103 * running on the same machine as jSite
105 public boolean isSameMachine() {
110 * Sets whether this node is running on the same machine as jSite.
113 * <code>true</code> if the node is running on the same machine
114 * as jSite, <code>false</code> otherwise
116 public void setSameMachine(boolean sameMachine) {
117 this.sameMachine = sameMachine;
124 public String toString() {
125 return name + " (" + hostname + ((port == 9481) ? ("") : (":" + port)) + ")";