Package com.softlayer.api.service.ticket
Interface Subject.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Subject
public static interface Subject.ServiceAsync extends ServiceAsync
-
-
Method Summary
-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
withNewMask
Subject.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
Subject.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Subject.Mask mask)
-
getAllObjects
Future<List<Subject>> getAllObjects()
Async version ofSubject.Service.getAllObjects()
-
getAllObjects
Future<?> getAllObjects(ResponseHandler<List<Subject>> callback)
-
getObject
Future<Subject> getObject()
Async version ofSubject.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Subject> callback)
-
getTopFiveKnowledgeLayerQuestions
Future<List<QuestionAnswer>> getTopFiveKnowledgeLayerQuestions()
Async version ofSubject.Service.getTopFiveKnowledgeLayerQuestions()
-
getTopFiveKnowledgeLayerQuestions
Future<?> getTopFiveKnowledgeLayerQuestions(ResponseHandler<List<QuestionAnswer>> callback)
-
getCategory
Future<Category> getCategory()
Async version ofSubject.Service.getCategory()
-
getCategory
Future<?> getCategory(ResponseHandler<Category> callback)
Async callback version ofSubject.Service.getCategory()
-
getChildren
Future<List<Subject>> getChildren()
Async version ofSubject.Service.getChildren()
-
getChildren
Future<?> getChildren(ResponseHandler<List<Subject>> callback)
Async callback version ofSubject.Service.getChildren()
-
getGroup
Future<Group> getGroup()
Async version ofSubject.Service.getGroup()
-
getGroup
Future<?> getGroup(ResponseHandler<Group> callback)
Async callback version ofSubject.Service.getGroup()
-
getParent
Future<Subject> getParent()
Async version ofSubject.Service.getParent()
-
getParent
Future<?> getParent(ResponseHandler<Subject> callback)
Async callback version ofSubject.Service.getParent()
-
-