protect keys from being changed
[jSite2.git] / src / net / pterodactylus / jsite / project / Project.java
1 /*
2  * jSite2 - Project.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.project;
21
22 import java.beans.PropertyChangeListener;
23
24 import net.pterodactylus.util.beans.AbstractBean;
25
26 /**
27  * Container for project information. A Project 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 Project extends AbstractBean {
34
35         /** Name of the “name” property. */
36         public static final String PROPERTY_NAME = "name";
37
38         /** Name of the “description” property. */
39         public static final String PROPERTY_DESCRIPTION = "description";
40
41         /** Name of the “public key” property. */
42         public static final String PROPERTY_PUBLIC_KEY = "publicKey";
43
44         /** Name of the “private key” property. */
45         public static final String PROPERTY_PRIVATE_KEY = "privateKey";
46
47         /** Name of the “local path” property. */
48         public static final String PROPERTY_BASE_PATH = "basePath";
49
50         /** Internal ID. */
51         private String id;
52
53         /** The name of the project. */
54         private String name;
55
56         /** The description of the project. */
57         private String description;
58
59         /** The public key. */
60         private String publicKey;
61
62         /** The private key. */
63         private String privateKey;
64
65         /** The base path of the project. */
66         private String basePath;
67
68         /**
69          * Returns the internal ID.
70          * 
71          * @return The internal ID
72          */
73         String getId() {
74                 return id;
75         }
76
77         /**
78          * Sets the internal ID.
79          * 
80          * @param id
81          *            The internal ID
82          */
83         void setId(String id) {
84                 this.id = id;
85         }
86
87         /**
88          * Returns the name of the project.
89          * 
90          * @return The name of the project
91          */
92         public String getName() {
93                 return name;
94         }
95
96         /**
97          * Sets the name of the project.
98          * 
99          * @param name
100          *            The name of the project
101          */
102         public void setName(String name) {
103                 String oldName = this.name;
104                 this.name = name;
105                 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
106         }
107
108         /**
109          * Returns the description of the project.
110          * 
111          * @return The description of the project
112          */
113         public String getDescription() {
114                 return description;
115         }
116
117         /**
118          * Sets the description of the project
119          * 
120          * @param description
121          *            The description of the project
122          */
123         public void setDescription(String description) {
124                 String oldDescription = this.description;
125                 this.description = description;
126                 fireIfPropertyChanged(PROPERTY_DESCRIPTION, oldDescription, description);
127         }
128
129         /**
130          * Returns the public key of the project.
131          * 
132          * @return The public key of the project
133          */
134         public String getPublicKey() {
135                 return publicKey;
136         }
137
138         /**
139          * Sets the public key of the project.
140          * 
141          * @param publicKey
142          *            The public key of the project
143          */
144         void setPublicKey(String publicKey) {
145                 String oldPublicKey = this.publicKey;
146                 this.publicKey = publicKey;
147                 fireIfPropertyChanged(PROPERTY_PUBLIC_KEY, oldPublicKey, publicKey);
148         }
149
150         /**
151          * Returns the private key of the project.
152          * 
153          * @return The private key of the project
154          */
155         public String getPrivateKey() {
156                 return privateKey;
157         }
158
159         /**
160          * Sets the private key of the project.
161          * 
162          * @param privateKey
163          *            The private key of the project
164          */
165         void setPrivateKey(String privateKey) {
166                 String oldPrivateKey = this.privateKey;
167                 this.privateKey = privateKey;
168                 fireIfPropertyChanged(PROPERTY_PRIVATE_KEY, oldPrivateKey, privateKey);
169         }
170
171         /**
172          * Returns the base path of the project.
173          * 
174          * @return The base path of the project
175          */
176         public String getBasePath() {
177                 return basePath;
178         }
179
180         /**
181          * Sets the base path of the project.
182          * 
183          * @param basePath
184          *            The base path of the project
185          */
186         public void setBasePath(String basePath) {
187                 String oldBasePath = this.basePath;
188                 this.basePath = basePath;
189                 fireIfPropertyChanged(PROPERTY_BASE_PATH, oldBasePath, basePath);
190         }
191
192 }