Skip to content

Commit

Permalink
feat(jans-core): added read response modification method
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed Jan 19, 2022
1 parent 00a24f2 commit 74bbe38
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,7 @@ public interface ClientRegistrationType extends BaseExternalType {

boolean modifyPutResponse(Object responseAsJsonObject, Object executionContext);

boolean modifyReadResponse(Object responseAsJsonObject, Object executionContext);

boolean modifyPostResponse(Object responseAsJsonObject, Object executionContext);
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public boolean modifyPutResponse(Object responseAsJsonObject, Object executionCo
return false;
}

@Override
public boolean modifyReadResponse(Object responseAsJsonObject, Object executionContext) {
return false;
}

@Override
public boolean modifyPostResponse(Object responseAsJsonObject, Object executionContext) {
return false;
Expand Down

0 comments on commit 74bbe38

Please sign in to comment.