com.notronix.etsy.impl.EtsyMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JEtsy Show documentation
Show all versions of JEtsy Show documentation
A Java implementation of a Java version of the Etsy API
package com.notronix.etsy.impl;
import com.notronix.etsy.api.authentication.model.Credentials;
public abstract class EtsyMethod extends AbstractEtsyMethod
{
private static final String API_URL_BASE = "https://api.etsy.com/v3";
public EtsyMethod(Credentials clientCredentials) {
super(clientCredentials);
}
public EtsyMethod(Credentials clientCredentials, Credentials accessCredentials) {
super(clientCredentials, accessCredentials);
}
@Override
public final String getURL() {
return API_URL_BASE + getURI();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy