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

org.gs4tr.gcc.restclient.operation.ContextConfig 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.GCBasicModel;
import org.gs4tr.gcc.restclient.request.GCRequest;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

public class ContextConfig extends GCOperation {

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

	private static final String REQUEST_URL = "context/config";
	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 ContextConfigResponse.class;
	}

	public static class ContextConfigResponse extends GCResponse {

		@JsonProperty("response_data")
		private ContextConfigResponseData contextConfigResponseData;

		public ContextConfigResponseData getResponseData() {
			return contextConfigResponseData;
		}

		public void setContextConfigResponseData(ContextConfigResponseData contextConfigResponseData) {
			this.contextConfigResponseData = contextConfigResponseData;
		}

	}

	@JsonIgnoreProperties(ignoreUnknown = true)
	public static class ContextConfigResponseData extends GCBasicModel {
		@JsonProperty("xslt_configs")
		private List xsltConfigs;

		public List getXsltConfigs() {
			return xsltConfigs;
		}

		public void setXsltConfigs(List xsltConfigs) {
			this.xsltConfigs = xsltConfigs;
		}

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy