All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spt.development.audit.spring.aop.LocalhostFacade Maven / Gradle / Ivy

Go to download

Adds auditing to your project through the use of annotations typically added to Service methods.

There is a newer version: 3.0.25
Show newest version
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