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;
22 import java.beans.PropertyChangeListener;
24 import net.pterodactylus.jsite.util.IdGenerator;
25 import net.pterodactylus.util.beans.AbstractBean;
26 import net.pterodactylus.util.number.Hex;
29 * Container for a Freenet node. A Node is capable of notifying
30 * {@link PropertyChangeListener}s if any of the contained properties change.
32 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
34 public class Node extends AbstractBean {
36 /** Name of the “name” property. */
37 public static final String PROPERTY_NAME = "name";
39 /** Name of the “hostname” property. */
40 public static final String PROPERTY_HOSTNAME = "hostname";
42 /** Name of the “port” property. */
43 public static final String PROPERTY_PORT = "port";
48 /** The name of the node. */
51 /** The hostname of the node. */
52 private String hostname;
54 /** The port number of the node. */
61 id = Hex.toHex(IdGenerator.generateId());
65 * Returns the internal ID of the node.
67 * @return The internal ID of the node
74 * Sets the internal ID of the node.
77 * The internal ID of the node
79 void setId(String id) {
84 * Returns the user-given name of the node.
86 * @return The name of the node
88 public String getName() {
93 * Sets the user-given name of the node.
96 * The name of the node
98 public void setName(String name) {
99 String oldName = this.name;
101 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
105 * Returns the hostname of the node.
107 * @return The hostname of the node
109 public String getHostname() {
114 * Sets the hostname of the node.
117 * The hostname of the node
119 public void setHostname(String hostname) {
120 String oldHostname = this.hostname;
121 this.hostname = hostname;
122 fireIfPropertyChanged(PROPERTY_HOSTNAME, oldHostname, hostname);
126 * Returns the port number of the node.
128 * @return The port number of the node
130 public int getPort() {
135 * Sets the port number of the node.
138 * The port number of the node
140 public void setPort(int port) {
141 int oldPort = this.port;
143 fireIfPropertyChanged(PROPERTY_PORT, oldPort, port);
150 public String toString() {
151 return name + " (" + hostname + ((port == 9481) ? ("") : (":" + port)) + ")";