com.notronix.etsy.api.API 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.api;
import com.notronix.etsy.api.authentication.AuthResource;
import com.notronix.etsy.api.listings.ListingResource;
import com.notronix.etsy.api.shops.ShopResource;
import com.notronix.etsy.api.taxonomy.TaxonomyResource;
import com.notronix.etsy.api.users.UserResource;
public interface API
{
AuthResource getAuthResource();
ListingResource getListingResource();
ShopResource getShopResource();
TaxonomyResource getTaxonomyResource();
UserResource getUserResource();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy