Package com.softlayer.api.service.layout
Interface Item.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Item
public static interface Item.ServiceAsync extends ServiceAsync
-
-
Method Summary
Modifier and Type Method Description Future<List<Preference>>
getLayoutItemPreferences()
Async version ofItem.Service.getLayoutItemPreferences()
Future<?>
getLayoutItemPreferences(ResponseHandler<List<Preference>> callback)
Async callback version ofItem.Service.getLayoutItemPreferences()
Future<Type>
getLayoutItemType()
Async version ofItem.Service.getLayoutItemType()
Future<?>
getLayoutItemType(ResponseHandler<Type> callback)
Async callback version ofItem.Service.getLayoutItemType()
Future<Item>
getObject()
Async version ofItem.Service.getObject()
Future<?>
getObject(ResponseHandler<Item> callback)
void
setMask(Item.Mask mask)
Item.Mask
withMask()
Use the existing mask on this service or create it if not presentItem.Mask
withNewMask()
Overwrite the existing mask on this service with a new one and return it-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
withNewMask
Item.Mask withNewMask()
Description copied from interface:Maskable
Overwrite the existing mask on this service with a new one and return it- Specified by:
withNewMask
in interfaceMaskable
-
withMask
Item.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Item.Mask mask)
-
getObject
Future<Item> getObject()
Async version ofItem.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Item> callback)
-
getLayoutItemPreferences
Future<List<Preference>> getLayoutItemPreferences()
Async version ofItem.Service.getLayoutItemPreferences()
-
getLayoutItemPreferences
Future<?> getLayoutItemPreferences(ResponseHandler<List<Preference>> callback)
Async callback version ofItem.Service.getLayoutItemPreferences()
-
getLayoutItemType
Future<Type> getLayoutItemType()
Async version ofItem.Service.getLayoutItemType()
-
getLayoutItemType
Future<?> getLayoutItemType(ResponseHandler<Type> callback)
Async callback version ofItem.Service.getLayoutItemType()
-
-