com.softlayer.api.service.workload.citrix.Request Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
The newest version!
package com.softlayer.api.service.workload.citrix;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* @see SoftLayer_Workload_Citrix_Request
*/
@ApiType("SoftLayer_Workload_Citrix_Request")
public class Request extends Entity {
@ApiProperty(canBeNullOrNotSet = true)
protected String clientId;
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
clientIdSpecified = true;
this.clientId = clientId;
}
protected boolean clientIdSpecified;
public boolean isClientIdSpecified() {
return clientIdSpecified;
}
public void unsetClientId() {
clientId = null;
clientIdSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String clientSecret;
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
clientSecretSpecified = true;
this.clientSecret = clientSecret;
}
protected boolean clientSecretSpecified;
public boolean isClientSecretSpecified() {
return clientSecretSpecified;
}
public void unsetClientSecret() {
clientSecret = null;
clientSecretSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String customerId;
public String getCustomerId() {
return customerId;
}
public void setCustomerId(String customerId) {
customerIdSpecified = true;
this.customerId = customerId;
}
protected boolean customerIdSpecified;
public boolean isCustomerIdSpecified() {
return customerIdSpecified;
}
public void unsetCustomerId() {
customerId = null;
customerIdSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask clientId() {
withLocalProperty("clientId");
return this;
}
public Mask clientSecret() {
withLocalProperty("clientSecret");
return this;
}
public Mask customerId() {
withLocalProperty("customerId");
return this;
}
}
}