![JAR search and dependency download from the Maven repository](/logo.png)
com.softlayer.api.service.integratedofferingteam.Region 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
package com.softlayer.api.service.integratedofferingteam;
import com.softlayer.api.ApiClient;
import com.softlayer.api.ResponseHandler;
import com.softlayer.api.annotation.ApiMethod;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.integratedofferingteam.container.region.Lead;
import java.util.List;
import java.util.concurrent.Future;
/**
* This class represents an Integrated Offering Team region.
*
* @see IntegratedOfferingTeam_Region
*/
@ApiType("IntegratedOfferingTeam_Region")
public class Region extends Entity {
public static Service service(ApiClient client) {
return client.createService(Service.class, null);
}
/**
* This class represents an Integrated Offering Team region.
*
* @see IntegratedOfferingTeam_Region
*/
@com.softlayer.api.annotation.ApiService("IntegratedOfferingTeam_Region")
public static interface Service extends com.softlayer.api.Service {
public ServiceAsync asAsync();
public Mask withNewMask();
public Mask withMask();
public void setMask(Mask mask);
/**
* @see IntegratedOfferingTeam_Region::getAllObjects
*/
@ApiMethod
public List getAllObjects();
/**
* @see IntegratedOfferingTeam_Region::getRegionLeads
*/
@ApiMethod
public List getRegionLeads();
}
public static interface ServiceAsync extends com.softlayer.api.ServiceAsync {
public Mask withNewMask();
public Mask withMask();
public void setMask(Mask mask);
/**
* Async version of {@link Service#getAllObjects}
*/
public Future> getAllObjects();
public Future> getAllObjects(ResponseHandler> callback);
/**
* Async version of {@link Service#getRegionLeads}
*/
public Future> getRegionLeads();
public Future> getRegionLeads(ResponseHandler> callback);
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy