Whitespace and formatting fixes.
[jFCPlib.git] / src / net / pterodactylus / fcp / highlevel / DirectDiskAccessResult.java
1 /*
2  * jFCPlib-high-level-client - DDAResult.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.fcp.highlevel;
21
22 /**
23  * The result of a direct disk access check.
24  * 
25  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
26  */
27 public class DirectDiskAccessResult extends HighLevelResult {
28
29         /** Whether reading is allowed. */
30         private boolean readAllowed;
31
32         /** Whether writing is allowed. */
33         private boolean writeAllowed;
34
35         /**
36          * Package-private constructor.
37          * 
38          * @param identifier
39          *            The identifier of the request
40          */
41         DirectDiskAccessResult(String identifier) {
42                 super(identifier);
43         }
44
45         /**
46          * Returns whether reading the directory is allowed.
47          * 
48          * @return <code>true</code> if the client is allowed to read from the
49          *         directory, <code>false</code> otherwise
50          */
51         public boolean isReadAllowed() {
52                 return readAllowed;
53         }
54
55         /**
56          * Sets whether reading the directory is allowed.
57          * 
58          * @param readAllowed
59          *            <code>true</code> if the client is allowed to read from the
60          *            directory, <code>false</code> otherwise
61          */
62         void setReadAllowed(boolean readAllowed) {
63                 this.readAllowed = readAllowed;
64         }
65
66         /**
67          * Returns whether writing to the directory is allowed.
68          * 
69          * @return <code>true</code> if the client is allowed to write to the
70          *         directory, <code>false</code> otherwise
71          */
72         public boolean isWriteAllowed() {
73                 return writeAllowed;
74         }
75
76         /**
77          * Sets whether writing to the directory is allowed.
78          * 
79          * @param writeAllowed
80          *            <code>true</code> if the client is allowed to write to the
81          *            directory, <code>false</code> otherwise
82          */
83         void setWriteAllowed(boolean writeAllowed) {
84                 this.writeAllowed = writeAllowed;
85         }
86
87 }