cloud.localstack.docker.annotation.LocalHostNameResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
package cloud.localstack.docker.annotation;
/**
* A default host name resolver
*/
public class LocalHostNameResolver implements IHostNameResolver {
@Override
public String getHostName() {
return "localhost";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy