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

com.jd.blockchain.ledger.PrivilegeSet 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.binaryproto.DataField;
import com.jd.binaryproto.PrimitiveType;
import com.jd.blockchain.consts.DataCodes;

/**
 * 表示赋予角色的特权码;
 *
 * @author huanghaiquan
 *
 */
@DataContract(code = DataCodes.PRIVILEGE_SET, name = "PRIVILEGE-SET")
public interface PrivilegeSet {

	@DataField(order = 1, primitiveType = PrimitiveType.BYTES)
	LedgerPrivilegeBitset getLedgerPrivilege();

	@DataField(order = 2, primitiveType = PrimitiveType.BYTES)
	TransactionPrivilegeBitset getTransactionPrivilege();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy