Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

fix: use String as method in VisualizeHttpsCall #10

Merged
merged 1 commit into from May 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -17,9 +17,9 @@
@Retention(RetentionPolicy.RUNTIME)
public @interface VisualizeHttpsCall {
/**
* @return the method used to call path.
* @return the method used to call path, e.g. GET, POST, ...
*/
HttpMethod method();
String method();

/**
* @return the path called, e.g. "/customer/{id}"
Expand Down