com.notronix.etsy.impl.users.method.GetUserAddressesMethod 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.users.method;
import com.google.gson.reflect.TypeToken;
import com.notronix.etsy.api.authentication.model.Credentials;
import com.notronix.etsy.api.Unmarshaller;
import com.notronix.etsy.api.PageableResponse;
import com.notronix.etsy.impl.EtsyPageableResponse;
import com.notronix.etsy.impl.PageableEtsyMethod;
import com.notronix.etsy.impl.users.model.EtsyUserAddress;
public class GetUserAddressesMethod extends PageableEtsyMethod
{
public GetUserAddressesMethod(Credentials clientCredentials, Credentials accessCredentials) {
super(clientCredentials, accessCredentials);
}
@Override
public PageableResponse getResponse(Unmarshaller unmarshaller, String payload) {
return unmarshaller.unmarshal(payload,
new TypeToken>(){}.getType());
}
@Override
protected String getURI() {
return "/application/user/addresses";
}
@Override
public boolean requiresOAuth() {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy