fc841d2e71989312ea86254b0bcb74060f25783a
[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  * @version $Id$
27  */
28 public class DirectDiskAccessResult extends HighLevelResult {
29
30         /** Whether reading is allowed. */
31         private boolean readAllowed;
32
33         /** Whether writing is allowed. */
34         private boolean writeAllowed;
35
36         /**
37          * Package-private constructor.
38          */
39         DirectDiskAccessResult() {
40         }
41
42         /**
43          * Returns whether reading the directory is allowed.
44          * 
45          * @return <code>true</code> if the client is allowed to read from the
46          *         directory, <code>false</code> otherwise
47          */
48         public boolean isReadAllowed() {
49                 return readAllowed;
50         }
51
52         /**
53          * Sets whether reading the directory is allowed.
54          * 
55          * @param readAllowed
56          *            <code>true</code> if the client is allowed to read from the
57          *            directory, <code>false</code> otherwise
58          */
59         void setReadAllowed(boolean readAllowed) {
60                 this.readAllowed = readAllowed;
61         }
62
63         /**
64          * Returns whether writing to the directory is allowed.
65          * 
66          * @return <code>true</code> if the client is allowed to write to the
67          *         directory, <code>false</code> otherwise
68          */
69         public boolean isWriteAllowed() {
70                 return writeAllowed;
71         }
72
73         /**
74          * Sets whether writing to the directory is allowed.
75          * 
76          * @param writeAllowed
77          *            <code>true</code> if the client is allowed to write to the
78          *            directory, <code>false</code> otherwise
79          */
80         void setWriteAllowed(boolean writeAllowed) {
81                 this.writeAllowed = writeAllowed;
82         }
83
84 }