org.gs4tr.gcc.restclient.model.Connector 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.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Connector extends GCBasicModel {
@JsonProperty("connector_key")
private String connectorKey;
@JsonProperty("connector_name")
private String connectorName;
public String getConnectorKey() {
return connectorKey;
}
public void setConnectorKey(String connectorKey) {
this.connectorKey = connectorKey;
}
public String getConnectorName() {
return connectorName;
}
public void setConnectorName(String connectorName) {
this.connectorName = connectorName;
}
}