com.solace.spring.cloud.stream.binder.config.SolaceBinderClientInfoProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-stream-binder-solace Show documentation
Show all versions of spring-cloud-stream-binder-solace Show documentation
A Spring Cloud Stream Binder implementation using the Solace Java API (JCSMP)
package com.solace.spring.cloud.stream.binder.config;
import com.solacesystems.jcsmp.impl.client.ClientInfoProvider;
class SolaceBinderClientInfoProvider extends ClientInfoProvider {
public String getSoftwareVersion() {
return String.format("4.2.4 (%s)", super.getSoftwareVersion());
}
public String getSoftwareDate() {
return String.format("2024-07-22 12:47:53 (%s)", super.getSoftwareDate());
}
public String getPlatform() {
return this.getPlatform("Spring Cloud Stream Binder Solace (JCSMP SDK)");
}
}