9dca04f39b79769333d612cf12affd61fde801da
[jSite2.git] / src / net / pterodactylus / util / fcp / EndListPersistentRequests.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6 /**
7  * The “EndListPersistentRequests” message signals the end of a list of
8  * {@link PersistentGet} and {@link PersistentPut} requests.
9  * 
10  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
11  * @version $Id$
12  */
13 public class EndListPersistentRequests extends BaseMessage {
14
15         /**
16          * Creates a new “EndListPersistentRequests” message that wraps the received
17          * message.
18          * 
19          * @param receivedMessage
20          *            The received message
21          */
22         EndListPersistentRequests(FcpMessage receivedMessage) {
23                 super(receivedMessage);
24         }
25
26 }