Skip to content

Commit

Permalink
Remove 'serializable'
Browse files Browse the repository at this point in the history
  • Loading branch information
bzablocki committed Nov 25, 2024
1 parent eba116e commit a0a4d3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* response is 401 Unauthorized, the client will execute an additional request with Basic Auth
* header to refresh the token.
*/
public class SempBasicAuthClientExecutor implements Serializable {
public class SempBasicAuthClientExecutor {
// Every request will be repeated 2 times in case of abnormal connection failures.
private static final int REQUEST_NUM_RETRIES = 2;
private static final Map<CookieManagerKey, CookieManager> COOKIE_MANAGER_MAP =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Example class showing how the {@link BasicAuthSempClient} can be extended or have functionalities
* overridden. In this case, the modified method is {@link
* BasicAuthSempClient#getBacklogBytes(String)}, which queries multiple SEMP endpoints to collect
* acurrate backlog metrics. For usage, see {@link SolaceIOMultipleSempIT}.
* accurate backlog metrics. For usage, see {@link SolaceIOMultipleSempIT}.
*/
public class BasicAuthMultipleSempClient extends BasicAuthSempClient {
private final List<SempBasicAuthClientExecutor> sempBacklogBasicAuthClientExecutors;
Expand Down

0 comments on commit a0a4d3d

Please sign in to comment.