com.openyelp.commons.RpcSerializable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonrpc Show documentation
Show all versions of jsonrpc Show documentation
jsonrpc is a lightweight Rpc Framework
/**
* CopyRright (c)1985-2012:宝亿电子
* Project: jsonrpc
* Module ID:
* Comments:
* JDK version used:
* Namespace:package org.json.rpc.commons;
* Author:陈联高
* Create Date: 2012-12-25
* Modified By:ada.young
* Modified Date:2012-12-25
* Why & What is modified
* Version: 1.01
*/
package com.openyelp.commons;
import java.io.Serializable;
/**
* 服务器返回类
* @author Administrator
*
*/
public class RpcSerializable implements Serializable {
/**
* 服务器返回信息.可以用改标记服务器的运行情况,比如为0表示服务器处理成功,为-1表示处理失败
*/
private int code;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy