Interface Client.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Client
public static interface Client.ServiceAsync extends ServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<Response>
createResourceLocation(Request citrixCredentials)
Future<?>
createResourceLocation(Request citrixCredentials, ResponseHandler<Response> callback)
Future<Response>
getResourceLocations(Request citrixCredentials)
Future<?>
getResourceLocations(Request citrixCredentials, ResponseHandler<Response> callback)
void
setMask(Client.Mask mask)
Future<Response>
validateCitrixCredentials(Request citrixCredentials)
Future<?>
validateCitrixCredentials(Request citrixCredentials, ResponseHandler<Response> callback)
Client.Mask
withMask()
Use the existing mask on this service or create it if not presentClient.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
Client.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
Client.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Client.Mask mask)
-
createResourceLocation
Future<?> createResourceLocation(Request citrixCredentials, ResponseHandler<Response> callback)
-
getResourceLocations
Future<?> getResourceLocations(Request citrixCredentials, ResponseHandler<Response> callback)
-
validateCitrixCredentials
Future<?> validateCitrixCredentials(Request citrixCredentials, ResponseHandler<Response> callback)
-
-