Package com.cbe
Class ShareManager
- java.lang.Object
-
- com.cbe.ShareManager
-
public class ShareManager extends java.lang.Object
Class for Managing Shares.
This is class has API calls for listing of Shares.
-
-
Constructor Summary
Constructors Constructor Description ShareManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
listAvailableShares(ShareEventProtocol delegate)
lists shares that have been shared to you.void
listMyShares(ShareEventProtocol delegate)
lists shares that have been shared by you.
-
-
-
Method Detail
-
listAvailableShares
public void listAvailableShares(ShareEventProtocol delegate)
lists shares that have been shared to you. this will give you information similar to a query but with specific share information.- Parameters:
delegate
- , ShareDelegate is a callback delegate to the user defined/implementation of the callbacks on ShareEventProtocol.
-
listMyShares
public void listMyShares(ShareEventProtocol delegate)
lists shares that have been shared by you. this will give you information similar to a query but with specific share information.- Parameters:
delegate
- , ShareDelegate is a callback delegate to the user defined/implementation of the callbacks on ShareEventProtocol.
-
-