org.apache.camel.component.web3j.Web3jEndpointUriFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-web3j Show documentation
Show all versions of camel-web3j Show documentation
Camel Ethereum support through Web3j
The newest version!
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.web3j;
import javax.annotation.processing.Generated;
import java.net.URISyntaxException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.apache.camel.spi.EndpointUriFactory;
/**
* Generated by camel build tools - do NOT edit this file!
*/
@Generated("org.apache.camel.maven.packaging.GenerateEndpointUriFactoryMojo")
public class Web3jEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {
private static final String BASE = ":nodeAddress";
private static final Set PROPERTY_NAMES;
private static final Set SECRET_PROPERTY_NAMES;
private static final Set MULTI_VALUE_PREFIXES;
static {
Set props = new HashSet<>(39);
props.add("address");
props.add("addresses");
props.add("atBlock");
props.add("blockHash");
props.add("bridgeErrorHandler");
props.add("clientId");
props.add("data");
props.add("databaseName");
props.add("exceptionHandler");
props.add("exchangePattern");
props.add("filterId");
props.add("fromAddress");
props.add("fromBlock");
props.add("fullTransactionObjects");
props.add("gasLimit");
props.add("gasPrice");
props.add("hashrate");
props.add("headerPowHash");
props.add("index");
props.add("keyName");
props.add("lazyStartProducer");
props.add("mixDigest");
props.add("nodeAddress");
props.add("nonce");
props.add("operation");
props.add("position");
props.add("priority");
props.add("privateFor");
props.add("quorumAPI");
props.add("sha3HashOfDataToSign");
props.add("signedTransactionData");
props.add("sourceCode");
props.add("toAddress");
props.add("toBlock");
props.add("topics");
props.add("transactionHash");
props.add("ttl");
props.add("value");
props.add("web3j");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
SECRET_PROPERTY_NAMES = Collections.emptySet();
MULTI_VALUE_PREFIXES = Collections.emptySet();
}
@Override
public boolean isEnabled(String scheme) {
return "web3j".equals(scheme);
}
@Override
public String buildUri(String scheme, Map properties, boolean encode) throws URISyntaxException {
String syntax = scheme + BASE;
String uri = syntax;
Map copy = new HashMap<>(properties);
uri = buildPathParameter(syntax, uri, "nodeAddress", null, true, copy);
uri = buildQueryParameters(uri, copy, encode);
return uri;
}
@Override
public Set propertyNames() {
return PROPERTY_NAMES;
}
@Override
public Set secretPropertyNames() {
return SECRET_PROPERTY_NAMES;
}
@Override
public Set multiValuePrefixes() {
return MULTI_VALUE_PREFIXES;
}
@Override
public boolean isLenientProperties() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy