You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gdms/src/core/operation/DownloadFile.java

13 lines
245 B

package core.operation;
import core.user.User;
import java.util.Map;
public class DownloadFile extends Operation{
@Override
public Map<String, Object> execute(User subject) throws Exception {
return this.getOptions();
}
}