Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Satisfy my Gemini overlord
  • Loading branch information
kabir committed Jan 9, 2026
commit 6e1c6000d78463e4b70336fadbc8fdbe58eb2cd9
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public class ReplicatedQueueManager implements QueueManager {

/**
* No-args constructor for CDI proxy creation.
* CDI requires a non-private constructor to create proxies for @ApplicationScoped beans.
* All fields are initialized by the @Inject constructor during actual bean creation.
*/
Comment thread
kabir marked this conversation as resolved.
@SuppressWarnings("NullAway")
protected ReplicatedQueueManager() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public class InMemoryQueueManager implements QueueManager {

/**
* No-args constructor for CDI proxy creation.
* CDI requires a non-private constructor to create proxies for @ApplicationScoped beans.
* All fields are initialized by the @Inject constructor during actual bean creation.
*/
Comment thread
kabir marked this conversation as resolved.
@SuppressWarnings("NullAway")
protected InMemoryQueueManager() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ public class BasePushNotificationSender implements PushNotificationSender {
private A2AHttpClient httpClient;
private PushNotificationConfigStore configStore;


/**
* No-args constructor for CDI proxy creation.
* CDI requires a non-private constructor to create proxies for @ApplicationScoped beans.
* All fields are initialized by the @Inject constructor during actual bean creation.
*/
Comment thread
kabir marked this conversation as resolved.
@SuppressWarnings("NullAway")
protected BasePushNotificationSender() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ public class JSONRPCHandler {
private RequestHandler requestHandler;
private Executor executor;

/**
* No-args constructor for CDI proxy creation.
* CDI requires a non-private constructor to create proxies for @ApplicationScoped beans.
* All fields are initialized by the @Inject constructor during actual bean creation.
*/
@SuppressWarnings("NullAway")
protected JSONRPCHandler() {
Comment thread
kabir marked this conversation as resolved.
// For CDI proxy creation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ public class RestHandler {
private RequestHandler requestHandler;
private Executor executor;

/**
* No-args constructor for CDI proxy creation.
* CDI requires a non-private constructor to create proxies for @ApplicationScoped beans.
* All fields are initialized by the @Inject constructor during actual bean creation.
*/
@SuppressWarnings("NullAway")
protected RestHandler() {
// For CDI
Expand Down