org.isisaddons.module.publishmq.dom.statusclient.IntValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isis-module-publishmq-dom-statusclient Show documentation
Show all versions of isis-module-publishmq-dom-statusclient Show documentation
A module providing helper classes for logging status messages
The newest version!
package org.isisaddons.module.publishmq.dom.statusclient;
public class IntValue {
public final Integer value;
public IntValue(final Integer value) {
this.value = value;
}
@Override
public String toString() {
return String.valueOf(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy