com.softlayer.api.service.user.customer.profile.event.HyperWarp 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.user.customer.profile.event;
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.container.user.customer.profile.event.hyperwarp.ProfileChange;
import java.util.concurrent.Future;
/**
* @see SoftLayer_User_Customer_Profile_Event_HyperWarp
*/
@ApiType("SoftLayer_User_Customer_Profile_Event_HyperWarp")
public class HyperWarp extends Entity {
public static Service service(ApiClient client) {
return client.createService(Service.class, null);
}
/**
* @see SoftLayer_User_Customer_Profile_Event_HyperWarp
*/
@com.softlayer.api.annotation.ApiService("SoftLayer_User_Customer_Profile_Event_HyperWarp")
public static interface Service extends com.softlayer.api.Service {
public ServiceAsync asAsync();
public Mask withNewMask();
public Mask withMask();
public void setMask(Mask mask);
/**
* @see SoftLayer_User_Customer_Profile_Event_HyperWarp::receiveEventDirect
*/
@ApiMethod
public Boolean receiveEventDirect(ProfileChange eventJson);
}
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#receiveEventDirect}
*/
public Future receiveEventDirect(ProfileChange eventJson);
public Future> receiveEventDirect(ProfileChange eventJson, ResponseHandler callback);
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
}
}