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

com.notronix.etsy.impl.users.method.GetUserMethod Maven / Gradle / Ivy

There is a newer version: 3.0.0014
Show newest version
package com.notronix.etsy.impl.users.method;

import com.notronix.etsy.api.authentication.model.Credentials;
import com.notronix.etsy.api.Unmarshaller;
import com.notronix.etsy.impl.EtsyMethod;
import com.notronix.etsy.impl.users.model.EtsyUser;

import static java.util.Objects.requireNonNull;

public class GetUserMethod extends EtsyMethod
{
    private Long userId;

    public GetUserMethod(Credentials clientCredentials, Credentials accessCredentials) {
        super(clientCredentials, accessCredentials);
    }

    @Override
    public EtsyUser getResponse(Unmarshaller unmarshaller, String payload) {
        return unmarshaller.unmarshal(payload, EtsyUser.class);
    }

    @Override
    protected String getURI() {
        return "/application/users/" + requireNonNull(userId);
    }

    @Override
    public boolean requiresOAuth() {
        return true;
    }

    public Long getUserId() {
        return userId;
    }

    public void setUserId(Long userId) {
        this.userId = userId;
    }

    public GetUserMethod withUserId(Long userId) {
        this.userId = userId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy