com.spt.development.audit.spring.aop.LocalhostFacade Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spt-development-audit-spring Show documentation
Show all versions of spt-development-audit-spring Show documentation
Adds auditing to your project through the use of annotations typically added to Service methods.
package com.spt.development.audit.spring.aop;
import java.net.InetAddress;
import java.net.UnknownHostException;
class LocalhostFacade {
String getServerHostName() throws UnknownHostException {
return InetAddress.getLocalHost().getHostName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy