Interface Item.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Item
public static interface Item.ServiceAsync extends ServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<Boolean>
editObject(Item templateObject)
Future<?>
editObject(Item templateObject, ResponseHandler<Boolean> callback)
Future<Item>
getObject()
Async version ofItem.Service.getObject()
Future<?>
getObject(ResponseHandler<Item> callback)
Future<Shipment>
getShipment()
Async version ofItem.Service.getShipment()
Future<?>
getShipment(ResponseHandler<Shipment> callback)
Async callback version ofItem.Service.getShipment()
Future<Type>
getShipmentItemType()
Async version ofItem.Service.getShipmentItemType()
Future<?>
getShipmentItemType(ResponseHandler<Type> callback)
Async callback version ofItem.Service.getShipmentItemType()
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)
-
editObject
Future<?> editObject(Item templateObject, ResponseHandler<Boolean> callback)
-
getObject
Future<Item> getObject()
Async version ofItem.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Item> callback)
-
getShipment
Future<Shipment> getShipment()
Async version ofItem.Service.getShipment()
-
getShipment
Future<?> getShipment(ResponseHandler<Shipment> callback)
Async callback version ofItem.Service.getShipment()
-
getShipmentItemType
Future<Type> getShipmentItemType()
Async version ofItem.Service.getShipmentItemType()
-
getShipmentItemType
Future<?> getShipmentItemType(ResponseHandler<Type> callback)
Async callback version ofItem.Service.getShipmentItemType()
-
-