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

au.com.agic.apptesting.utils.impl.ServerPortUtilsImpl Maven / Gradle / Ivy

package au.com.agic.apptesting.utils.impl;

import au.com.agic.apptesting.utils.ServerPortUtils;

import java.io.IOException;
import java.net.ServerSocket;

/**
 * An implementation of the server port utils
 */
public class ServerPortUtilsImpl implements ServerPortUtils {

	@Override
	public int getFreePort()  throws IOException {
		try (ServerSocket server = new ServerSocket(0)) {
			return server.getLocalPort();
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy