Uses of Enum Class
dev.getelements.elements.sdk.model.blockchain.BlockchainNetwork
Packages that use BlockchainNetwork
Package
Description
-
Uses of BlockchainNetwork in dev.getelements.elements.dao.mongo.blockchain
Methods in dev.getelements.elements.dao.mongo.blockchain with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionMongoWalletDao.getSingleWalletFromVaultForNetwork(String vaultId, BlockchainNetwork blockchainNetwork) Method parameters in dev.getelements.elements.dao.mongo.blockchain with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionMongoSmartContractDao.getSmartContracts(int offset, int count, BlockchainApi blockchainApi, List<BlockchainNetwork> blockchainNetworks) MongoWalletDao.getWallets(int offset, int count, String vaultId, String userId, BlockchainApi protocol, List<BlockchainNetwork> networks) -
Uses of BlockchainNetwork in dev.getelements.elements.dao.mongo.mapper
Methods in dev.getelements.elements.dao.mongo.mapper that return types with arguments of type BlockchainNetworkModifier and TypeMethodDescriptiondefault Map<BlockchainNetwork, SmartContractAddress> MongoDBMapper.toAddressesByNetwork(List<MongoSmartContractAddress> list) Method parameters in dev.getelements.elements.dao.mongo.mapper with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptiondefault List<MongoSmartContractAddress> MongoDBMapper.toAddressesFromMapByNetwork(Map<BlockchainNetwork, SmartContractAddress> map) -
Uses of BlockchainNetwork in dev.getelements.elements.dao.mongo.model.blockchain
Methods in dev.getelements.elements.dao.mongo.model.blockchain that return BlockchainNetworkMethods in dev.getelements.elements.dao.mongo.model.blockchain that return types with arguments of type BlockchainNetworkMethods in dev.getelements.elements.dao.mongo.model.blockchain with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionstatic MongoSmartContractAddressMongoSmartContractAddress.fromNetworkAndAddress(BlockchainNetwork network, SmartContractAddress smartContractAddress) voidMongoSmartContractAddress.setNetwork(BlockchainNetwork network) Method parameters in dev.getelements.elements.dao.mongo.model.blockchain with type arguments of type BlockchainNetwork -
Uses of BlockchainNetwork in dev.getelements.elements.jrpc
Methods in dev.getelements.elements.jrpc with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionJsonRpcModule.withNetwork(BlockchainNetwork network) Configures with theBlockchainNetworkinstance. -
Uses of BlockchainNetwork in dev.getelements.elements.rest.blockchain
Method parameters in dev.getelements.elements.rest.blockchain with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionSmartContractResource.getSmartContracts(int offset, int count, BlockchainApi api, List<BlockchainNetwork> network) VaultWalletResource.getWallets(int offset, int count, String userId, BlockchainApi api, List<BlockchainNetwork> network, String vaultId) -
Uses of BlockchainNetwork in dev.getelements.elements.sdk.dao
Methods in dev.getelements.elements.sdk.dao with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionWalletDao.getSingleWalletFromVaultForNetwork(String vaultId, BlockchainNetwork blockchainNetwork) Attempts to find a single wallet for the supplied vault ID and blockchain network.default Pagination<SmartContract> SmartContractDao.getSmartContractsForSingleNetwork(int offset, int count, BlockchainApi blockchainApi, BlockchainNetwork blockchainNetwork) Gets the smart contracts in the database.Method parameters in dev.getelements.elements.sdk.dao with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionSmartContractDao.getSmartContracts(int offset, int count, BlockchainApi blockchainApi, List<BlockchainNetwork> blockchainNetworks) Gets the smart contracts in the database.WalletDao.getWallets(int offset, int count, String vaultId, String userId, BlockchainApi protocol, List<BlockchainNetwork> networks) Lists allWalletinstances, specifying a search query. -
Uses of BlockchainNetwork in dev.getelements.elements.sdk.model.blockchain
Methods in dev.getelements.elements.sdk.model.blockchain that return BlockchainNetworkModifier and TypeMethodDescriptionstatic BlockchainNetworkReturns the enum constant of this class with the specified name.static BlockchainNetwork[]BlockchainNetwork.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in dev.getelements.elements.sdk.model.blockchain that return types with arguments of type BlockchainNetworkModifier and TypeMethodDescriptionBlockchainApi.networks()Gets allBlockchainNetworks associated with this API.Method parameters in dev.getelements.elements.sdk.model.blockchain with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionvoidBlockchainApi.validate(Collection<BlockchainNetwork> networks) Validates that one or more network matches the<ExceptionT extends Throwable>
voidBlockchainApi.validate(Collection<BlockchainNetwork> networks, Supplier<ExceptionT> exSupplier) Validates that one or more network matches the -
Uses of BlockchainNetwork in dev.getelements.elements.sdk.model.blockchain.contract
Methods in dev.getelements.elements.sdk.model.blockchain.contract that return types with arguments of type BlockchainNetworkModifier and TypeMethodDescriptionCreateSmartContractRequest.getAddresses()SmartContract.getAddresses()UpdateSmartContractRequest.getAddresses()Method parameters in dev.getelements.elements.sdk.model.blockchain.contract with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionvoidCreateSmartContractRequest.setAddresses(Map<BlockchainNetwork, SmartContractAddress> addresses) voidSmartContract.setAddresses(Map<BlockchainNetwork, SmartContractAddress> addresses) voidUpdateSmartContractRequest.setAddresses(Map<BlockchainNetwork, SmartContractAddress> addresses) -
Uses of BlockchainNetwork in dev.getelements.elements.sdk.model.blockchain.wallet
Methods in dev.getelements.elements.sdk.model.blockchain.wallet that return types with arguments of type BlockchainNetworkModifier and TypeMethodDescriptionCreateWalletRequest.getNetworks()UpdateWalletRequest.getNetworks()Wallet.getNetworks()Method parameters in dev.getelements.elements.sdk.model.blockchain.wallet with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionvoidCreateWalletRequest.setNetworks(List<BlockchainNetwork> networks) voidUpdateWalletRequest.setNetworks(List<BlockchainNetwork> networks) voidWallet.setNetworks(List<BlockchainNetwork> networks) -
Uses of BlockchainNetwork in dev.getelements.elements.sdk.service.blockchain
Methods in dev.getelements.elements.sdk.service.blockchain with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionSmartContractInvocationService.resolve(String contractNameOrId, BlockchainNetwork network) Generates aSmartContractInvocationResolutionfor the supplied contract, which can be used to invoke the underlying smart contract methods.Method parameters in dev.getelements.elements.sdk.service.blockchain with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionSmartContractService.getSmartContracts(int offset, int count, BlockchainApi blockchainApi, List<BlockchainNetwork> blockchainNetworks) Lists allSmartContractinstances, specifying a search query.WalletService.getWallets(int offset, int count, String vaultId, String userId, BlockchainApi protocol, List<BlockchainNetwork> networks) Lists allWalletinstances, specifying a search query. -
Uses of BlockchainNetwork in dev.getelements.elements.sdk.service.blockchain.invoke
Methods in dev.getelements.elements.sdk.service.blockchain.invoke that return BlockchainNetworkMethods in dev.getelements.elements.sdk.service.blockchain.invoke with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionScopedInvoker.Factory.create(BlockchainNetwork network) Creates a newScopedInvoker.voidInvocationScope.setBlockchainNetwork(BlockchainNetwork blockchainNetwork) -
Uses of BlockchainNetwork in dev.getelements.elements.service.blockchain.invoke
Methods in dev.getelements.elements.service.blockchain.invoke with parameters of type BlockchainNetworkModifier and TypeMethodDescriptionSuperUserSmartContractInvocationService.resolve(String contractNameOrId, BlockchainNetwork blockchainNetwork) -
Uses of BlockchainNetwork in dev.getelements.elements.service.blockchain.omni
Method parameters in dev.getelements.elements.service.blockchain.omni with type arguments of type BlockchainNetworkModifier and TypeMethodDescriptionSuperUserSmartContractService.getSmartContracts(int offset, int count, BlockchainApi blockchainApi, List<BlockchainNetwork> blockchainNetworks) SuperUserWalletService.getWallets(int offset, int count, String vaultId, String userId, BlockchainApi protocol, List<BlockchainNetwork> networks) UserWalletService.getWallets(int offset, int count, String vaultId, String userId, BlockchainApi protocol, List<BlockchainNetwork> networks) -
Uses of BlockchainNetwork in dev.getelements.elements.service.guice
Constructors in dev.getelements.elements.service.guice with parameters of type BlockchainNetwork