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

com.jd.blockchain.ledger.UserInfoSetOperation Maven / Gradle / Ivy

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

import com.jd.binaryproto.DataContract;
import com.jd.blockchain.consts.DataCodes;

/**
 * @author huanghaiquan
 *
 */
@DataContract(code=DataCodes.TX_OP_USER_INFO_SET)
public interface UserInfoSetOperation extends Operation {
	
	String getUserAddress();
	
	KVEntry[] getPropertiesWriteSet();
	

	@DataContract(code=DataCodes.TX_OP_USER_INFO_SET_KV)
	public static interface KVEntry{
		
		String getKey();
		
		String getValue();
		
		long getExpectedVersion();
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy