org.gs4tr.gcc.restclient.request.DataStoreRequest 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 org.gs4tr.gcc.restclient.util.KeepAsJsonDeserializer;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
@JsonIgnoreProperties(ignoreUnknown = true)
public class DataStoreRequest extends GCRequest {
@JsonProperty("datastore")
@JsonDeserialize(using = KeepAsJsonDeserializer.class)
private String dataStoreString;
public DataStoreRequest() {
}
public DataStoreRequest(String dataStoreString){
this.setDataStoreString(dataStoreString);
}
public String getDataStoreString() {
return dataStoreString;
}
public void setDataStoreString(String dataStoreString) {
this.dataStoreString = dataStoreString;
}
}