This is an automated email from the ASF dual-hosted git repository. bibryam pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2ae0f1cfa0d4122369031168960d4e57b380f32a Author: Bilgin Ibryam <[email protected]> AuthorDate: Fri Jun 1 00:34:09 2018 +0100 CAMEL-12530:fixed documentationn tags --- .../springboot/Web3jComponentConfiguration.java | 92 +++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/platforms/spring-boot/components-starter/camel-web3j-starter/src/main/java/org/apache/camel/component/web3j/springboot/Web3jComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-web3j-starter/src/main/java/org/apache/camel/component/web3j/springboot/Web3jComponentConfiguration.java index dc179a3..ec085a7 100644 --- a/platforms/spring-boot/components-starter/camel-web3j-starter/src/main/java/org/apache/camel/component/web3j/springboot/Web3jComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-web3j-starter/src/main/java/org/apache/camel/component/web3j/springboot/Web3jComponentConfiguration.java @@ -66,34 +66,124 @@ public class Web3jComponentConfiguration public static class Web3jConfigurationNestedConfiguration { public static final Class CAMEL_NESTED_CLASS = org.apache.camel.component.web3j.Web3jConfiguration.class; + /** + * The preconfigured Web3j object. + */ private Web3j web3j; + /** + * The priority of a whisper message. + */ private BigInteger priority; + /** + * The time to live in seconds of a whisper message. + */ private BigInteger ttl; + /** + * Gas price used for each paid gas. + */ private BigInteger gasPrice; + /** + * The maximum gas allowed in this block. + */ private BigInteger gasLimit; + /** + * The value sent within a transaction. + */ private BigInteger value; + /** + * The compiled code of a contract OR the hash of the invoked method + * signature and encoded parameters. + */ private String data; + /** + * The address the transaction is send from + */ private String fromAddress; + /** + * The address the transaction is directed to. + */ private String toAddress; + /** + * A random hexadecimal(32 bytes) ID identifying the client. + */ private String clientId; + /** + * A hexadecimal string representation (32 bytes) of the hash rate. + */ private String hashrate; + /** + * The mix digest (256 bits) used for submitting a proof-of-work + * solution. + */ private String mixDigest; + /** + * The header's pow-hash (256 bits) used for submitting a proof-of-work + * solution. + */ private String headerPowHash; + /** + * The nonce found (64 bits) used for submitting a proof-of-work + * solution. + */ private String nonce; + /** + * The source code to compile. + */ private String sourceCode; + /** + * The information about a transaction requested by transaction hash. + */ private String transactionHash; + /** + * The local database name. + */ private String databaseName; + /** + * The key name in the database. + */ private String keyName; + /** + * The filter id to use. + */ private BigInteger filterId; + /** + * The transactions index position in the block. + */ private BigInteger transactionIndex; + /** + * The signed transaction data for a new message call transaction or a + * contract creation for signed transactions. + */ private String signedTransactionData; + /** + * Hash of the block where this transaction was in. + */ private String blockHash; + /** + * Message to sign by calculating an Ethereum specific signature. + */ private String sha3HashOfDataToSign; + /** + * The transaction index position withing a block. + */ private BigInteger position; + /** + * Contract address or a list of addresses. + */ private List addresses; + /** + * Topics are order-dependent. Each topic can also be a list of topics. + */ private List topics; + /** + * Contract address. + */ private String address; - private Boolean fullTransactionObjects; + /** + * If true it returns the full transaction objects, if false only the + * hashes of the transactions. + */ + private Boolean fullTransactionObjects = false; /** * Operation to use. */ -- To stop receiving notification emails like this one, please contact [email protected].
