org.gs4tr.gcc.restclient.request.GCRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.request;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonInclude(value = Include.NON_NULL)
public class GCRequest {
@JsonProperty("connector_key")
private String connectorKey;
public GCRequest() {
}
@JsonIgnore
public Map getParameters() {
return new HashMap();
}
public String getConnectorKey() {
return connectorKey;
}
public void setConnectorKey(String connectorKey) {
this.connectorKey = connectorKey;
}
}