/** * Tencent is pleased to support the open source community by making MSEC available. * * Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved. * * Licensed under the GNU General Public License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may * obtain a copy of the License at * * https://opensource.org/licenses/GPL-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package msec.org; /** * Created by Administrator on 2016/1/23. * ajax应答的基础类,所有exec()函数的返回类型都必须继承自该类 * 该类定义了两个字段,status 和 message,是所有json应答字符串都必须有的 * status==0表示成功,==100表示失败, ==99表示用户身份过期或者未登录 */ public class JsonRPCResponseBase { public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } int status; String message; }