Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 committed Jul 29, 2024
1 parent 149e34f commit 5622666
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plugin-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Calculated : ${currentHash}
tasks.register('checkAPIChanges', FileStateChecker) {
description = "Checks that the API for the Plugin-API project does not change without deliberate thought"
files = sourceSets.main.allJava.files
knownHash = '1qw0rZFxhGiGEqxunsfp00XNIK+jUWUCqlEFSVaUXc8='
knownHash = 'ycZ8d+jgooJiJDc5mwpNqk0+mx79IG5QO4GVDtgIbeY='
}
check.dependsOn('checkAPIChanges')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
*/
package org.hyperledger.besu.plugin.services.rpc;

/** Represent a Json RPC response */
public interface RpcResponse {

/**
* Get the response type
*
* @return the response type
*/
RpcResponseType getType();
}

0 comments on commit 5622666

Please sign in to comment.