Package com.emc.d2fs.interfaces
Interface ILinkedDocumentService
- All Superinterfaces:
ID2fsService
Linked document services.
-
Method Summary
Modifier and TypeMethodDescriptiongetAllLinks
(Context context) getLinkInfo
(Context context, String objectId) Get link informationsgetLinksCount
(Context context, String objectId) Get links countMethods inherited from interface com.emc.d2fs.interfaces.ID2fsService
isRemote, setRemote
-
Method Details
-
getLinksCount
Get links count- Parameters:
context
-Context
object containing informations about client/sessionobjectId
- String value of document id- Returns:
- Integer value of count
- Throws:
D2fsException
DfException
Exception
- Since:
- 4.2
-
getLinkInfo
Get link informations- Parameters:
context
-Context
object containing informations about client/sessionobjectId
- String value of document id- Returns:
LinkInfo
object as informations- Throws:
D2fsException
Exception
- Since:
- 4.2
-
getAllLinks
- Parameters:
context
-Context
object containing informations about client/session- Returns:
LinkInfo
object as informations- Throws:
Exception
- Note: default implemetnetation just returns null. This approach is taken to make sure other classes who implment this interface do not need to implement this method.
-