X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FDeleteReplyCommand.java;h=daed26dd2a6acbb814be87f2fb3fbfc0384c47ae;hp=4ac9c1550ce64df963f2eba166bf174b86dcd1b9;hb=a47643aed43d118ca68044f95451bb5374cdb332;hpb=47ed7eaf00c35889781831d33d04e9f91c9ad266 diff --git a/src/main/java/net/pterodactylus/sone/fcp/DeleteReplyCommand.java b/src/main/java/net/pterodactylus/sone/fcp/DeleteReplyCommand.java index 4ac9c15..daed26d 100644 --- a/src/main/java/net/pterodactylus/sone/fcp/DeleteReplyCommand.java +++ b/src/main/java/net/pterodactylus/sone/fcp/DeleteReplyCommand.java @@ -1,5 +1,5 @@ /* - * Sone - DeleteReplyCommand.java - Copyright © 2011 David Roden + * Sone - DeleteReplyCommand.java - Copyright © 2011–2012 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,16 +18,16 @@ package net.pterodactylus.sone.fcp; import net.pterodactylus.sone.core.Core; -import net.pterodactylus.sone.data.Reply; +import net.pterodactylus.sone.data.PostReply; import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder; import net.pterodactylus.sone.freenet.fcp.FcpException; import freenet.support.SimpleFieldSet; import freenet.support.api.Bucket; /** - * FCP command that deletes a {@link Reply}. + * FCP command that deletes a {@link PostReply}. * - * @see Core#deleteReply(Reply) + * @see Core#deleteReply(PostReply) * @author David ‘Bombe’ Roden */ public class DeleteReplyCommand extends AbstractSoneCommand { @@ -47,7 +47,7 @@ public class DeleteReplyCommand extends AbstractSoneCommand { */ @Override public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException { - Reply reply = getReply(parameters, "Reply"); + PostReply reply = getReply(parameters, "Reply"); if (!getCore().isLocalSone(reply.getSone())) { return new ErrorResponse(401, "Not allowed."); }