-
Notifications
You must be signed in to change notification settings - Fork 195
Make AgentStaticLoader public #577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @kawolum, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request primarily focuses on enhancing the extensibility of the application by adjusting the visibility of a core class. By making Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request makes the AgentStaticLoader class public, which is a necessary change to allow it to be instantiated as a Spring bean in custom configurations. The change is logical and well-justified. I have added one suggestion to also make the class final, which is a best practice for public classes not designed for inheritance.
| * then registered as beans via factory methods. | ||
| */ | ||
| class AgentStaticLoader implements AgentLoader { | ||
| public class AgentStaticLoader implements AgentLoader { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this class is now public but does not seem to be designed for inheritance, it's a good practice to declare it as final. This prevents subclassing, making the class's contract clearer and avoiding potential issues if it were to be extended in ways that break its internal invariants. This follows the general Java best practice of designing and documenting for inheritance or else prohibiting it.
| public class AgentStaticLoader implements AgentLoader { | |
| public final class AgentStaticLoader implements AgentLoader { |
|
@kawolum seeing this PR made me laugh 🤣 and chuckle, and made my day, because we've gone back and forth:
I'm OK with making it |
Having said that... @kawolum can you elaborate a little further on why you need it?
Do you just want to use Or do you want to sub-class and change it? Then wouldn't it be simpler to just implement |
|
I am deploying ADK web as a service and I need to implement a Okay with making |
|
@vorburger Let me know what you think. I can clean up the commit in the PR afterwards. |
This is needed to start an application with custom Spring configuration. AgentStaticLoader will be instantiated as a bean.