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

com.sflpro.notifier.api.internal.client.rest.common.AbstractResourceClient Maven / Gradle / Ivy

There is a newer version: 1.10.2
Show newest version
package com.sflpro.notifier.api.internal.client.rest.common;

import javax.ws.rs.client.Client;

/**
 * User: Ruben Dilanyan
 * Company: SFL LLC
 * Date: 7/19/15
 * Time: 11:33 AM
 */
public class AbstractResourceClient {

    /* Properties */
    private String apiPath;

    private Client client;

    /* Constructors */
    public AbstractResourceClient() {
        // Default constructor
    }

    public AbstractResourceClient(final Client client, final String apiPath) {
        this.apiPath = apiPath;
        this.client = client;
    }

    /* Properties getters and setters */
    public String getApiPath() {
        return apiPath;
    }

    public Client getClient() {
        return client;
    }

    public void setClient(final Client client) {
        this.client = client;
    }

    public void setApiPath(final String apiPath) {
        this.apiPath = apiPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy