Back to project page AndroidCloud.
The source code is released under:
GNU General Public License
If you think the Android project AndroidCloud listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.twlkyao.kuaipan; /* w ww . j ava 2 s . c o m*/ import cn.kuaipan.android.openapi.KuaipanAPI; public class ResultBase { private KuaipanAPI api; private String filePath; private String remotePath; private String errorMsg; public ResultBase() { } public ResultBase(KuaipanAPI api, String filePath) { this.api = api; this.filePath = filePath; } public ResultBase(KuaipanAPI api, String filePath, String remotePath, String errorMsg) { this.api = api; this.filePath = filePath; this.remotePath = remotePath; this.errorMsg = errorMsg; } public KuaipanAPI getApi() { return api; } public void setApi(KuaipanAPI api) { this.api = api; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } public String getRemotePath() { return remotePath; } public void setRemotePath(String remotePath) { this.remotePath = remotePath; } public String getErrorMsg() { return errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } }