com.jd.blockchain.utils.http.agent.ServiceEndpoint Maven / Gradle / Ivy
package com.jd.blockchain.utils.http.agent;
import org.springframework.util.StringUtils;
import com.jd.blockchain.utils.net.NetworkAddress;
/**
* 服务器设置;
*
* @author haiq
*
*/
public class ServiceEndpoint extends NetworkAddress implements Cloneable {
private static final long serialVersionUID = 128018335830143965L;
private String contextPath;
public ServiceEndpoint(String host, int port, boolean secure) {
this(host, port, secure, null);
}
public ServiceEndpoint(NetworkAddress networkAddress) {
this(networkAddress.getHost(), networkAddress.getPort(), networkAddress.isSecure(), null);
}
public ServiceEndpoint(String host, int port, boolean secure, String contextPath) {
super(host, port, secure);
contextPath = StringUtils.cleanPath(contextPath);
if (StringUtils.isEmpty(contextPath)) {
this.contextPath = "/";
}else{
this.contextPath = contextPath;
}
}
public String getContextPath() {
return contextPath;
}
@Override
public ServiceEndpoint clone() {
try {
return (ServiceEndpoint) super.clone();
} catch (CloneNotSupportedException e) {
throw new UnsupportedOperationException(e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy