com.jd.blockchain.ledger.OperationArgument Maven / Gradle / Ivy
package com.jd.blockchain.ledger;
import utils.io.ByteArray;
/**
* 操作参数;
*
* @author huanghaiquan
*
*/
public interface OperationArgument {
/**
* 参数类型;
*
* @return
*/
byte getKey();
/**
* 参数值;
*
* @return
*/
ByteArray getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy