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

org.gs4tr.gcc.restclient.operation.Connectors Maven / Gradle / Ivy

Go to download

GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.

There is a newer version: 3.1.3
Show newest version
package org.gs4tr.gcc.restclient.operation;

import java.util.List;

import org.gs4tr.gcc.restclient.GCConfig;
import org.gs4tr.gcc.restclient.dto.GCResponse;
import org.gs4tr.gcc.restclient.model.Connector;
import org.gs4tr.gcc.restclient.request.GCRequest;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Connectors extends GCOperation {

    public Connectors(GCConfig config) {
	super(config);
    }

    private static final String REQUEST_URL = "connectors";
    private static final String REQUEST_METHOD = "GET";

    @Override
    public String getRequestMethod() {
	return REQUEST_METHOD;
    }

    @Override
    protected String getApiUrl() {
	return REQUEST_URL;
    }

    @Override
    public GCRequest getRequestObject() {
	return null;
    }

    @Override
    public Class getResponseClass() {
	return ConnectorsResponse.class;
    }

    public static class ConnectorsResponse extends GCResponse {

	@JsonProperty("response_data")
	private List connectors;

	public List getResponseData() {
	    return connectors;
	}

	public void setResponseData(List connectors) {
	    this.connectors = connectors;
	}

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy