Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* MIT License
*
* Copyright (c) 2017-2019 nuls.io
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
package network.nerve.kit.model.dto;
import network.nerve.core.rpc.model.ApiModel;
import network.nerve.core.rpc.model.ApiModelProperty;
import network.nerve.core.rpc.model.TypeDescriptor;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
@ApiModel(name = "合约方法详情")
public class ProgramMethod {
@ApiModelProperty(description = "方法名称")
private String name;
@ApiModelProperty(description = "方法描述")
private String desc;
@ApiModelProperty(description = "方法参数列表", type = @TypeDescriptor(value = List.class, collectionElement = ProgramMethodArg.class))
private List args;
@ApiModelProperty(description = "返回值类型")
private String returnArg;
@ApiModelProperty(description = "是否视图方法(调用此方法数据不上链)")
private boolean view;
@ApiModelProperty(description = "是否是事件")
private boolean event;
@ApiModelProperty(description = "是否是可接受主链资产转账的方法")
private boolean payable;
@ApiModelProperty(description = "方法返回值是否JSON序列化")
private boolean jsonSerializable;
public ProgramMethod() {
}
public ProgramMethod(Map result) {
this.name = (String) result.get("name");
this.desc = (String) result.get("desc");
this.returnArg = (String) result.get("returnArg");
this.view = (boolean) result.get("view");
this.event = (boolean) result.get("event");
this.payable = (boolean) result.get("payable");
this.jsonSerializable = (boolean) result.get("jsonSerializable");
List