Interface Certification.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Certification
public static interface Certification.ServiceAsync extends ServiceAsync
-
-
Method Summary
Modifier and Type Method Description Future<Account>
getAccount()
Async version ofCertification.Service.getAccount()
Future<?>
getAccount(ResponseHandler<Account> callback)
Async callback version ofCertification.Service.getAccount()
Future<Hardware>
getHardware()
Async version ofCertification.Service.getHardware()
Future<?>
getHardware(ResponseHandler<Hardware> callback)
Async callback version ofCertification.Service.getHardware()
Future<Certification>
getObject()
Async version ofCertification.Service.getObject()
Future<?>
getObject(ResponseHandler<Certification> callback)
Future<byte[]>
getResultFile()
Async version ofCertification.Service.getResultFile()
Future<?>
getResultFile(ResponseHandler<byte[]> callback)
void
setMask(Certification.Mask mask)
Certification.Mask
withMask()
Use the existing mask on this service or create it if not presentCertification.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
Certification.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
Certification.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Certification.Mask mask)
-
getObject
Future<Certification> getObject()
Async version ofCertification.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Certification> callback)
-
getResultFile
Future<byte[]> getResultFile()
Async version ofCertification.Service.getResultFile()
-
getResultFile
Future<?> getResultFile(ResponseHandler<byte[]> callback)
-
getAccount
Future<Account> getAccount()
Async version ofCertification.Service.getAccount()
-
getAccount
Future<?> getAccount(ResponseHandler<Account> callback)
Async callback version ofCertification.Service.getAccount()
-
getHardware
Future<Hardware> getHardware()
Async version ofCertification.Service.getHardware()
-
getHardware
Future<?> getHardware(ResponseHandler<Hardware> callback)
Async callback version ofCertification.Service.getHardware()
-
-