Package org.italiangrid.voms.ac.impl
Class DefaultLocalHostnameResolver
- java.lang.Object
-
- org.italiangrid.voms.ac.impl.DefaultLocalHostnameResolver
-
- All Implemented Interfaces:
LocalHostnameResolver
public class DefaultLocalHostnameResolver extends Object implements LocalHostnameResolver
The default implementation for localhost name resolver. The localhost name is resolved using the following code:InetAddress.getLocalHost().getCanonicalHostName();
-
-
Constructor Summary
Constructors Constructor Description DefaultLocalHostnameResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
resolveLocalHostname()
Resolves the hostname for localhost
-
-
-
Method Detail
-
resolveLocalHostname
public String resolveLocalHostname() throws UnknownHostException
Description copied from interface:LocalHostnameResolver
Resolves the hostname for localhost- Specified by:
resolveLocalHostname
in interfaceLocalHostnameResolver
- Returns:
- a String containing the localhost hostname
- Throws:
UnknownHostException
- when there is an error resolving the hostname
-
-