Skip to content

Commit

Permalink
Implement getProductName and getProductVersion in ArtemisRA
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Dec 1, 2023
1 parent 8f06b8e commit 074a0a7
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@
public class ArtemisResourceAdapterFactory implements ResourceAdapterFactory {

@Override
public String getDescription() {
return String.format("%s %s", ActiveMQResourceAdapter.PRODUCT_NAME, VersionLoader.getVersion().getFullVersion());
public String getProductName() {
return ActiveMQResourceAdapter.PRODUCT_NAME;
}

@Override
public String getProductVersion() {
return VersionLoader.getVersion().getFullVersion();
}

@Override
Expand Down

0 comments on commit 074a0a7

Please sign in to comment.