io.t3w.correios.T3WLoggable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of correios Show documentation
Show all versions of correios Show documentation
Integração com API dos Correios
package io.t3w.correios;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
interface T3WLoggable {
default Logger getLogger() {
return LoggerFactory.getLogger(getClass());
}
static Logger getLogger(Class> clazz) {
return LoggerFactory.getLogger(clazz);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy