b7bf63765cd98a4a69ba1c4a9f8542e52654b471
[jSite2.git] / src / net / pterodactylus / jsite / core / Node.java
1 /*
2  * jSite2 - Node.java -
3  * Copyright © 2008 David Roden
4  *
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.
9  *
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.
14  *
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.
18  */
19
20 package net.pterodactylus.jsite.core;
21
22 import java.beans.PropertyChangeListener;
23
24 import net.pterodactylus.util.beans.AbstractBean;
25
26 /**
27  * Container for a Freenet node. A Node is capable of notifying
28  * {@link PropertyChangeListener}s if any of the contained properties change.
29  * 
30  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
31  * @version $Id$
32  */
33 public class Node extends AbstractBean {
34
35         /** Name of the “name” property. */
36         public static final String PROPERTY_NAME = "name";
37
38         /** Name of the “hostname” property. */
39         public static final String PROPERTY_HOSTNAME = "hostname";
40
41         /** Name of the “port” property. */
42         public static final String PROPERTY_PORT = "port";
43
44         /** The name of the node. */
45         private String name;
46
47         /** The hostname of the node. */
48         private String hostname;
49
50         /** The port number of the node. */
51         private int port;
52
53         //
54         // EVENT MANAGEMENT
55         //
56
57         /**
58          * Returns the user-given name of the node.
59          * 
60          * @return The name of the node
61          */
62         public String getName() {
63                 return name;
64         }
65
66         /**
67          * Sets the user-given name of the node.
68          * 
69          * @param name
70          *            The name of the node
71          */
72         public void setName(String name) {
73                 String oldName = this.name;
74                 this.name = name;
75                 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
76         }
77
78         /**
79          * Returns the hostname of the node.
80          * 
81          * @return The hostname of the node
82          */
83         public String getHostname() {
84                 return hostname;
85         }
86
87         /**
88          * Sets the hostname of the node.
89          * 
90          * @param hostname
91          *            The hostname of the node
92          */
93         public void setHostname(String hostname) {
94                 String oldHostname = this.hostname;
95                 this.hostname = hostname;
96                 fireIfPropertyChanged(PROPERTY_HOSTNAME, oldHostname, hostname);
97         }
98
99         /**
100          * Returns the port number of the node.
101          * 
102          * @return The port number of the node
103          */
104         public int getPort() {
105                 return port;
106         }
107
108         /**
109          * Sets the port number of the node.
110          * 
111          * @param port
112          *            The port number of the node
113          */
114         public void setPort(int port) {
115                 int oldPort = this.port;
116                 this.port = port;
117                 fireIfPropertyChanged(PROPERTY_PORT, oldPort, port);
118         }
119
120         /**
121          * {@inheritDoc}
122          */
123         @Override
124         public String toString() {
125                 return name + " (" + hostname + ((port == 9481) ? ("") : (":" + port)) + ")";
126         }
127
128 }