Package org.zanata.webtrans.shared.rpc

Examples of org.zanata.webtrans.shared.rpc.DownloadAllFilesResult


                throw new ActionException(e);
            }

            // NB Keys are currently strings, but this is tied to the
            // implementation
            return new DownloadAllFilesResult(true, taskKey.toString());
        }

        return new DownloadAllFilesResult(false, null);

    }
View Full Code Here


    @Override
    public void execute() {
        Log.info("ENTER DummyDownloadAllFilesCommand.execute()");

        callback.onSuccess(new DownloadAllFilesResult(true, "dummyId"));
        Log.info("EXIT DummyDownloadAllFilesCommand.execute()");
    }
View Full Code Here

TOP

Related Classes of org.zanata.webtrans.shared.rpc.DownloadAllFilesResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.