Interface ApiAuthentication.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- ApiAuthentication
public static interface ApiAuthentication.ServiceAsync extends ServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<ApiAuthentication>
editObject(ApiAuthentication templateObject)
Future<?>
editObject(ApiAuthentication templateObject, ResponseHandler<ApiAuthentication> callback)
Future<ApiAuthentication>
getObject()
Async version ofApiAuthentication.Service.getObject()
Future<?>
getObject(ResponseHandler<ApiAuthentication> callback)
Future<Customer>
getUser()
Async version ofApiAuthentication.Service.getUser()
Future<?>
getUser(ResponseHandler<Customer> callback)
Async callback version ofApiAuthentication.Service.getUser()
void
setMask(ApiAuthentication.Mask mask)
ApiAuthentication.Mask
withMask()
Use the existing mask on this service or create it if not presentApiAuthentication.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
ApiAuthentication.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
ApiAuthentication.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(ApiAuthentication.Mask mask)
-
editObject
Future<ApiAuthentication> editObject(ApiAuthentication templateObject)
-
editObject
Future<?> editObject(ApiAuthentication templateObject, ResponseHandler<ApiAuthentication> callback)
-
getObject
Future<ApiAuthentication> getObject()
Async version ofApiAuthentication.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<ApiAuthentication> callback)
-
getUser
Future<Customer> getUser()
Async version ofApiAuthentication.Service.getUser()
-
getUser
Future<?> getUser(ResponseHandler<Customer> callback)
Async callback version ofApiAuthentication.Service.getUser()
-
-