[
https://issues.apache.org/jira/browse/GERONIMO-6603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Mark Struberg closed GERONIMO-6603.
-----------------------------------
Resolution: Won't Fix
Closing old outdated issues.
Note that the Apache Geronimo Application Server itself was declared EOL in
2017 and we do not maintain the server parts anymore.
We still do actively maintain many of the Java EE / Jakarta EE which saw the
light during creation of the Apache Geronimo Aplication Server.
If you feel that this ticket still affects one of those components then please
feel free to reopen the ticket.
thanks, your Apache Geronimo team!
> Inconsistent method name
> ------------------------
>
> Key: GERONIMO-6603
> URL: https://issues.apache.org/jira/browse/GERONIMO-6603
> Project: Geronimo
> Issue Type: Improvement
> Security Level: public(Regular issues)
> Reporter: KuiLIU
> Priority: Major
>
> The following method is named "listBundles".
> "listBundles" seems that the method will return a list of bundles.
> Actually, this method adds the bundles into the log info.
> Thus, "logBundles" should be more intuitive than "listBundles".
> {code:java}
> protected void listBundles(BundleContext ctx) {
> StringBuilder b = new StringBuilder("Bundles:");
> for (Bundle bundle: ctx.getBundles()) {
> b.append("\n Id:").append(bundle.getBundleId()).append("
> status:").append(bundle.getState()).append(" ").append(bundle.getLocation());
> }
> getLog().info(b.toString());
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)