Skip to content

Commit 207d4b7

Browse files
Update FileNotificationCommand to do a POST, as required on the server side (#1)
1 parent 24a3b83 commit 207d4b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/src/org/labkey/remoteapi/pipeline/FileNotificationCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package org.labkey.remoteapi.pipeline;
1717

1818
import org.json.simple.JSONObject;
19-
import org.labkey.remoteapi.Command;
19+
import org.labkey.remoteapi.PostCommand;
2020

2121
/**
2222
* Notifies the server that files may have become available for the pipeline to process. Causes the server to
@@ -25,7 +25,7 @@
2525
* User: jeckels
2626
* Date: Feb 15, 2011
2727
*/
28-
public class FileNotificationCommand extends Command<FileNotificationResponse>
28+
public class FileNotificationCommand extends PostCommand<FileNotificationResponse>
2929
{
3030
public FileNotificationCommand()
3131
{

0 commit comments

Comments
 (0)