d956b620310945df30ed43da8c45cd9250a0fd62
[jFCPlib.git] / src / net / pterodactylus / fcp / BaseMessage.java
1 /*
2  * jSite2 - BaseMessage.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;
21
22 import java.util.Map;
23
24 /**
25  * A basic message abstraction that wraps a received FCP message.
26  * 
27  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
28  */
29 public class BaseMessage {
30
31         /** The received message, wrapped here. */
32         private final FcpMessage receivedMessage;
33
34         /**
35          * Creates a new base message that wraps the given message.
36          * 
37          * @param receivedMessage
38          *            The FCP message that was received
39          */
40         BaseMessage(FcpMessage receivedMessage) {
41                 this.receivedMessage = receivedMessage;
42         }
43
44         /**
45          * Returns the name of the message.
46          * 
47          * @return The name of the message
48          */
49         public String getName() {
50                 return receivedMessage.getName();
51         }
52
53         /**
54          * Returns the content of the field.
55          * 
56          * @param field
57          *            The name of the field
58          * @return The content of the field, or <code>null</code> if there is no
59          *         such field
60          */
61         protected String getField(String field) {
62                 return receivedMessage.getField(field);
63         }
64
65         /**
66          * Returns all fields from the received message.
67          * 
68          * @see FcpMessage#getFields()
69          * @return All fields from the message
70          */
71         protected Map<String, String> getFields() {
72                 return receivedMessage.getFields();
73         }
74
75 }