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

com.lordofthejars.nosqlunit.cassandra.CassandraHostFormat Maven / Gradle / Ivy

package com.lordofthejars.nosqlunit.cassandra;

public class CassandraHostFormat {

	private static final String SEPARATOR = ":";
	
	private CassandraHostFormat() {
		super();
	}
	
	public static final String convert(String host, int port) {
		return host+SEPARATOR+port;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy