Interface Program.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Program
public static interface Program.ServiceAsync extends ServiceAsync
-
-
Method Summary
Modifier and Type Method Description Future<List<Affiliate>>
getAffiliatesAvailableForSelfEnrollmentByVerificationType(String verificationTypeKeyName)
Future<?>
getAffiliatesAvailableForSelfEnrollmentByVerificationType(String verificationTypeKeyName, ResponseHandler<List<Affiliate>> callback)
Future<List<Type>>
getCompanyTypes()
Async version ofProgram.Service.getCompanyTypes()
Future<?>
getCompanyTypes(ResponseHandler<List<Type>> callback)
Future<Program>
getObject()
Async version ofProgram.Service.getObject()
Future<?>
getObject(ResponseHandler<Program> callback)
Future<Account>
selfEnrollNewAccount(Account accountTemplate)
Future<?>
selfEnrollNewAccount(Account accountTemplate, ResponseHandler<Account> callback)
void
setMask(Program.Mask mask)
Program.Mask
withMask()
Use the existing mask on this service or create it if not presentProgram.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
Program.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
Program.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Program.Mask mask)
-
getAffiliatesAvailableForSelfEnrollmentByVerificationType
Future<List<Affiliate>> getAffiliatesAvailableForSelfEnrollmentByVerificationType(String verificationTypeKeyName)
-
getAffiliatesAvailableForSelfEnrollmentByVerificationType
Future<?> getAffiliatesAvailableForSelfEnrollmentByVerificationType(String verificationTypeKeyName, ResponseHandler<List<Affiliate>> callback)
-
getCompanyTypes
Future<List<Type>> getCompanyTypes()
Async version ofProgram.Service.getCompanyTypes()
-
getCompanyTypes
Future<?> getCompanyTypes(ResponseHandler<List<Type>> callback)
-
getObject
Future<Program> getObject()
Async version ofProgram.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Program> callback)
-
selfEnrollNewAccount
Future<?> selfEnrollNewAccount(Account accountTemplate, ResponseHandler<Account> callback)
-
-