com.fasterxml.jackson.annotation.JsonGetter Java Examples

The following examples show how to use com.fasterxml.jackson.annotation.JsonGetter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PrivateTransactionReceiptResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter("privateFrom")
public String getPrivateFrom() {
  return privateFrom;
}
 
Example #2
Source File: PrivateTransactionReceiptResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "logsBloom")
public String getLogsBloom() {
  return logsBloom;
}
 
Example #3
Source File: DrillStatsTable.java    From Bats with Apache License 2.0 4 votes vote down vote up
@JsonGetter ("avgwidth")
public double getAvgWidth() {
  return this.width;
}
 
Example #4
Source File: TransactionReceiptStatusResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "status")
public String getStatus() {
  return status;
}
 
Example #5
Source File: SyncingResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "startingBlock")
public String getStartingBlock() {
  return startingBlock;
}
 
Example #6
Source File: TransactionCompleteResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "nonce")
public String getNonce() {
  return nonce;
}
 
Example #7
Source File: TransactionReceiptResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "transactionHash")
public String getTransactionHash() {
  return transactionHash;
}
 
Example #8
Source File: PeerResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "name")
public String getName() {
  return name;
}
 
Example #9
Source File: TransactionCompleteResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "from")
public String getFrom() {
  return from;
}
 
Example #10
Source File: DrillStatsTable.java    From Bats with Apache License 2.0 4 votes vote down vote up
@JsonGetter("histogram")
public Histogram getHistogram() { return this.histogram; }
 
Example #11
Source File: TransactionLogBloomCacher.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter
public String getStartBlock() {
  return "0x" + Long.toHexString(startBlock);
}
 
Example #12
Source File: PrivateTransactionReceiptResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter("privateFor")
public List<String> getPrivateFor() {
  return privateFor;
}
 
Example #13
Source File: JsonRpcResponse.java    From ethsigner with Apache License 2.0 4 votes vote down vote up
@JsonGetter("jsonrpc")
default String getVersion() {
  return JSON_RPC_VERSION;
}
 
Example #14
Source File: JsonRpcSuccessResponse.java    From ethsigner with Apache License 2.0 4 votes vote down vote up
@JsonGetter("result")
public Object getResult() {
  return result;
}
 
Example #15
Source File: PendingTransactionsStatisticsResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter
public long getMaxSize() {
  return maxSize;
}
 
Example #16
Source File: PrivateTransactionReceiptResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter("status")
public String getStatus() {
  return status;
}
 
Example #17
Source File: TransactionCompleteResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "blockHash")
public String getBlockHash() {
  return blockHash;
}
 
Example #18
Source File: BlockResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "parentHash")
public String getParentHash() {
  return parentHash;
}
 
Example #19
Source File: DebugTraceTransactionResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "gas")
public long getGas() {
  return gas;
}
 
Example #20
Source File: JsonRpcRequest.java    From ethsigner with Apache License 2.0 4 votes vote down vote up
@JsonGetter("method")
public String getMethod() {
  return method;
}
 
Example #21
Source File: JsonRpcRequest.java    From ethsigner with Apache License 2.0 4 votes vote down vote up
@JsonGetter("id")
public JsonRpcRequestId getId() {
  return id;
}
 
Example #22
Source File: DebugStorageRangeAtResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "value")
public String getValue() {
  return value;
}
 
Example #23
Source File: BlockResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "gasLimit")
public String getGasLimit() {
  return gasLimit;
}
 
Example #24
Source File: TransactionPendingResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "gasPrice")
public String getGasPrice() {
  return gasPrice;
}
 
Example #25
Source File: PrivateTransactionResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "v")
public String getV() {
  return v;
}
 
Example #26
Source File: PeerResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "port")
public String getPort() {
  return port;
}
 
Example #27
Source File: JsonRpcSuccessResponse.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter("result")
public Object getResult() {
  return result;
}
 
Example #28
Source File: BlockHeader.java    From incubator-tuweni with Apache License 2.0 4 votes vote down vote up
/**
 * @return the number of the block.
 */
@JsonGetter("number")
public UInt256 getNumber() {
  return number;
}
 
Example #29
Source File: BlockResult.java    From besu with Apache License 2.0 4 votes vote down vote up
@JsonGetter(value = "receiptsRoot")
public String getReceiptsRoot() {
  return receiptsRoot;
}
 
Example #30
Source File: BlockHeader.java    From incubator-tuweni with Apache License 2.0 4 votes vote down vote up
/**
 * @return the hash associated with computional work on the block.
 */
@JsonGetter("mixHash")
public Hash getMixHash() {
  return mixHash;
}