All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.blockchain.contract.ContractEntrance Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.contract;

/**
 * 合约入口
 *
 * @author shaozhuguang
 *
 */
public class ContractEntrance {

    /**
     * 合约入口接口
     */
    private String intf;

    /**
     * 合约入口实现类
     */
    private String impl;

    public ContractEntrance() {
    }

    public ContractEntrance(String intf, String impl) {
        this.intf = intf;
        this.impl = impl;
    }

    public String getIntf() {
        return intf;
    }

    public void setIntf(String intf) {
        this.intf = intf;
    }

    public String getImpl() {
        return impl;
    }

    public void setImpl(String impl) {
        this.impl = impl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy