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

com.github.fosin.cdp.util.converter.support.StringToInetSocketAddress Maven / Gradle / Ivy

package com.github.fosin.cdp.util.converter.support;


import com.github.fosin.cdp.util.NetUtil;
import org.springframework.core.convert.converter.Converter;

import java.net.InetSocketAddress;

/**
 * StringToInetSocketAddress class.
 *
 * @author 28860823
 * @version $Id: $
 */
public class StringToInetSocketAddress implements Converter {
	
	/** {@inheritDoc} */
	@Override
	public InetSocketAddress convert(String source) {
		return NetUtil.toAddress(source);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy