com.softlayer.api.service.workload.citrix.request.CreateResourceLocation 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.request;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.workload.citrix.Request;
/**
* @see SoftLayer_Workload_Citrix_Request_CreateResourceLocation
*/
@ApiType("SoftLayer_Workload_Citrix_Request_CreateResourceLocation")
public class CreateResourceLocation extends Request {
@ApiProperty(canBeNullOrNotSet = true)
protected String resourceLocationName;
public String getResourceLocationName() {
return resourceLocationName;
}
public void setResourceLocationName(String resourceLocationName) {
resourceLocationNameSpecified = true;
this.resourceLocationName = resourceLocationName;
}
protected boolean resourceLocationNameSpecified;
public boolean isResourceLocationNameSpecified() {
return resourceLocationNameSpecified;
}
public void unsetResourceLocationName() {
resourceLocationName = null;
resourceLocationNameSpecified = false;
}
public static class Mask extends com.softlayer.api.service.workload.citrix.Request.Mask {
public Mask resourceLocationName() {
withLocalProperty("resourceLocationName");
return this;
}
}
}