
org.nameapi.client.services.RestServicePort Maven / Gradle / Ivy
package org.nameapi.client.services;
import com.optimaize.anythingworks.client.rest.http.RestHttpClient;
/**
*
*/
public abstract class RestServicePort {
protected final RestHttpClient restApiClient;
protected final String servicePath;
public RestServicePort(RestHttpClient restApiClient, String servicePath) {
this.restApiClient = restApiClient;
this.servicePath = servicePath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy