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

com.qcloud.cos.endpoint.DefaultEndpointResolver Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.endpoint;

/**
 * default endpoint resolver, just return the api endpoint
 * the dns resolve will be implemented by http library.
 * @author chengwu
 *
 */
public class DefaultEndpointResolver implements EndpointResolver {

    @Override
    public String resolveGeneralApiEndpoint(String generalApiEndpoint) {
        return generalApiEndpoint;
    }

    @Override
    public String resolveGetServiceApiEndpoint(String getServiceApiEndpoint) {
        return getServiceApiEndpoint;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy