Package | Description |
---|---|
org.alfresco.mobile.android.api.model |
Provides all basic objects.
|
org.alfresco.mobile.android.api.model.impl |
Implementation of all high level object.
|
org.alfresco.mobile.android.api.model.impl.cloud | |
org.alfresco.mobile.android.api.model.impl.publicapi | |
org.alfresco.mobile.android.api.services |
Provides all services available (those services must call in an asynchronous way (background task..) ).
|
org.alfresco.mobile.android.api.services.impl |
Implementation of all services.
|
org.alfresco.mobile.android.api.services.impl.onpremise |
Implementation of alfresco services for onPremise instance..
|
org.alfresco.mobile.android.api.services.impl.publicapi | |
org.alfresco.mobile.android.api.utils |
Provides all utilities.
|
org.alfresco.mobile.android.extension.api.services | |
org.alfresco.mobile.android.extension.api.services.impl |
Modifier and Type | Interface and Description |
---|---|
interface |
Document
Document base object.
|
interface |
Folder
Folder Base object
|
interface |
Link
Link Base object
|
Modifier and Type | Class and Description |
---|---|
class |
DocumentImpl
Document base object.
|
class |
DocumentLinkImpl
Document base object.
|
class |
FolderImpl
Folder Base object
|
class |
FolderLinkImpl
Folder Link object
|
class |
LinkImpl
Folder Base object
|
class |
NodeImpl
Base Implementation of Alfresco Node object.
|
Constructor and Description |
---|
PermissionsImpl(Node node)
Instantiates a new permissions impl.
|
Modifier and Type | Class and Description |
---|---|
class |
CloudDocumentImpl |
class |
CloudFolderImpl
Folder Base object
|
class |
CloudNodeImpl |
Modifier and Type | Class and Description |
---|---|
class |
PublicAPIDocumentImpl |
class |
PublicAPIFolderImpl
Folder Base object
|
class |
PublicAPINodeImpl |
Modifier and Type | Method and Description |
---|---|
Node |
DocumentFolderService.addAspects(Node node,
List<String> aspects)
Adds the given aspects to the given node.
|
Node |
DocumentFolderService.getChildByPath(Folder folder,
String relativePath)
Gets the node object stored at the relative specified path from the
folder object.
|
Node |
DocumentFolderService.getChildByPath(String path)
Gets the node object stored at the specified path.
|
Node |
DocumentFolderService.getNodeByIdentifier(String identifier) |
Node |
DocumentFolderService.refreshNode(Node node)
Returns the latest (and complete) metadata for the provided node.
|
Node |
DocumentFolderService.updateProperties(Node node,
Map<String,Serializable> properties)
Updates the properties of the specified node.
|
Node |
DocumentFolderService.updateProperties(Node node,
Map<String,Serializable> properties,
List<String> aspects)
Updates the properties for the given node and applies the given aspects.
|
Modifier and Type | Method and Description |
---|---|
List<Node> |
DocumentFolderService.getChildren(Folder folder)
Lists all immediate child nodes of the given context folder.
|
PagingResult<Node> |
DocumentFolderService.getChildren(Folder folder,
ListingContext listingContext)
Lists immediate child nodes of the given context folder.
|
List<Node> |
DocumentFolderService.getFavoriteNodes()
Returns a list of the current users favorite nodes.
|
PagingResult<Node> |
DocumentFolderService.getFavoriteNodes(ListingContext listingContext)
Returns a paged list of the current users favorite nodes.
|
List<Node> |
SearchService.keywordSearch(String keywords,
KeywordSearchOptions options)
A space delimited list of keywords to search for.
|
PagingResult<Node> |
SearchService.keywordSearch(String keywords,
KeywordSearchOptions options,
ListingContext listingContext)
A space delimited list of keywords to search for.
|
List<Node> |
SearchService.search(String statement,
SearchLanguage language)
Executes a query statement against the contents of the repository using
the given search language.
|
PagingResult<Node> |
SearchService.search(String statement,
SearchLanguage language,
ListingContext listingContext)
Executes a query statement against the contents of the repository using
the given search language.
|
Modifier and Type | Method and Description |
---|---|
Node |
DocumentFolderService.addAspects(Node node,
List<String> aspects)
Adds the given aspects to the given node.
|
Comment |
CommentService.addComment(Node node,
String content)
Add a comment to the specified Node (Folder or Document).
|
void |
DocumentFolderService.addFavorite(Node node)
Marks the provided node as a favorite node.
|
void |
TaggingService.addTags(Node node,
List<String> tags)
Adds a list of tags to a node.
|
void |
CommentService.deleteComment(Node node,
Comment comment)
Remove the specified comment from the repository.
|
void |
DocumentFolderService.deleteNode(Node node)
Deletes the specified node.
|
List<Comment> |
CommentService.getComments(Node node)
List the available comments for the specified node.
|
PagingResult<Comment> |
CommentService.getComments(Node node,
ListingContext listingContext)
List the available comments for the specified node.
|
int |
RatingService.getLikeCount(Node node)
Retrieves the number of likes for the specified node
|
Folder |
DocumentFolderService.getParentFolder(Node node)
Gets the direct parent folder object.
|
Permissions |
DocumentFolderService.getPermissions(Node node) |
ContentFile |
DocumentFolderService.getRendition(Node node,
String type)
Retrieve a specific type of Rendition for the specified identifier.
|
ContentStream |
DocumentFolderService.getRenditionStream(Node node,
String type)
Retrieve a specific type of Rendition for the specified identifier as
InputStream
|
List<Tag> |
TaggingService.getTags(Node node) |
PagingResult<Tag> |
TaggingService.getTags(Node node,
ListingContext listingContext) |
boolean |
DocumentFolderService.isFavorite(Node node)
Determines whether the given node has been marked as a favorite by the
current user.
|
boolean |
RatingService.isLiked(Node node)
Determine if the current user has liked this node.
|
void |
RatingService.like(Node node)
Increases the like count for the specified node.
|
Node |
DocumentFolderService.refreshNode(Node node)
Returns the latest (and complete) metadata for the provided node.
|
void |
DocumentFolderService.removeFavorite(Node node)
Removes the provided node from the current users favorites.
|
void |
RatingService.unlike(Node node)
Removes a previous “like” of the specified node.
|
Comment |
CommentService.updateComment(Node node,
Comment comment,
String content)
Updates the given comment with the provided content.
|
Node |
DocumentFolderService.updateProperties(Node node,
Map<String,Serializable> properties)
Updates the properties of the specified node.
|
Node |
DocumentFolderService.updateProperties(Node node,
Map<String,Serializable> properties,
List<String> aspects)
Updates the properties for the given node and applies the given aspects.
|
Modifier and Type | Method and Description |
---|---|
Node |
AbstractDocumentFolderServiceImpl.addAspects(Node node,
List<String> aspects)
Adds the given aspects to the given node.
|
protected Node |
AlfrescoService.convertNode(org.apache.chemistry.opencmis.client.api.CmisObject object)
Wrap and transform cmisobject into NodeObject
|
protected Node |
AlfrescoService.convertNode(org.apache.chemistry.opencmis.client.api.CmisObject object,
boolean hasAllProperties) |
Node |
AbstractDocumentFolderServiceImpl.getChildByPath(Folder folder,
String relativePathFromFolder)
Gets the node object stored at the relative specified path from the
folder object.
|
Node |
AbstractDocumentFolderServiceImpl.getChildByPath(String path)
Gets the node object stored at the specified path.
|
Node |
AbstractDocumentFolderServiceImpl.getNodeByIdentifier(String identifier) |
Node |
AbstractDocumentFolderServiceImpl.refreshNode(Node node) |
Node |
AbstractDocumentFolderServiceImpl.updateProperties(Node node,
Map<String,Serializable> properties)
Updates the properties of the specified node.
|
Node |
AbstractDocumentFolderServiceImpl.updateProperties(Node node,
Map<String,Serializable> properties,
List<String> aspects)
Updates the properties for the given node and applies the given aspects.
|
protected Node |
AbstractDocumentFolderServiceImpl.updateProperties(Node node,
Map<String,Serializable> properties,
List<String> aspects,
boolean propertiesRequired) |
Modifier and Type | Method and Description |
---|---|
List<Node> |
AbstractDocumentFolderServiceImpl.getChildren(Folder parentFolder)
Lists all immediate child nodes of the given context folder.
|
PagingResult<Node> |
AbstractDocumentFolderServiceImpl.getChildren(Folder parentFolder,
ListingContext lcontext)
Lists immediate child nodes of the given context folder.
|
List<Node> |
SearchServiceImpl.keywordSearch(String keywords,
KeywordSearchOptions options)
A space delimited list of keywords to search for.
|
PagingResult<Node> |
SearchServiceImpl.keywordSearch(String keywords,
KeywordSearchOptions options,
ListingContext listingContext)
A space delimited list of keywords to search for.
|
List<Node> |
SearchServiceImpl.search(String statement,
SearchLanguage language)
Executes a query statement against the contents of the repository using
the given search language.
|
PagingResult<Node> |
SearchServiceImpl.search(String statement,
SearchLanguage language,
ListingContext listingContext)
Executes a query statement against the contents of the repository using
the given search language.
|
Modifier and Type | Method and Description |
---|---|
Node |
AbstractDocumentFolderServiceImpl.addAspects(Node node,
List<String> aspects)
Adds the given aspects to the given node.
|
Comment |
AbstractCommentService.addComment(Node node,
String content)
Add a comment to the specified Node (Folder or Document).
|
void |
AbstractCommentService.deleteComment(Node node,
Comment comment)
Remove the specified comment from the repository.
|
void |
AbstractDocumentFolderServiceImpl.deleteNode(Node node)
Deletes the specified node.
|
List<Comment> |
AbstractCommentService.getComments(Node node)
List the available comments for the specified node.
|
PagingResult<Comment> |
AbstractCommentService.getComments(Node node,
ListingContext listingContext)
List the available comments for the specified node.
|
protected abstract org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
AbstractCommentService.getCommentsUrl(Node node,
ListingContext listingContext,
boolean isReadOperation)
Internal method to retrieve node comments url.
|
protected abstract org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
AbstractCommentService.getCommentUrl(Node node,
Comment comment)
Internal method to retrieve a specific comment url.
|
int |
AbstractRatingsService.getLikeCount(Node node)
Retrieves the number of likes for the specified node
|
Folder |
AbstractDocumentFolderServiceImpl.getParentFolder(Node node)
Gets the direct parent folder object.
|
Permissions |
AbstractDocumentFolderServiceImpl.getPermissions(Node node) |
protected abstract org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
AbstractRatingsService.getRatingsUrl(Node node)
Internal method to retrieve a specific ratings url to like a node.
|
ContentFile |
AbstractDocumentFolderServiceImpl.getRendition(Node node,
String type)
Retrieve a specific type of Rendition for the specified identifier.
|
ContentStream |
AbstractDocumentFolderServiceImpl.getRenditionStream(Node node,
String type)
Retrieve a specific type of Rendition for the specified identifier as
InputStream
|
protected abstract org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
AbstractRatingsService.getUnlikeUrl(Node node)
Internal method to retrieve a specific ratings url to unlike a node.
|
boolean |
AbstractRatingsService.isLiked(Node node)
Determine if the current user has liked this node.
|
void |
AbstractRatingsService.like(Node node)
Increases the like count for the specified node.
|
Node |
AbstractDocumentFolderServiceImpl.refreshNode(Node node) |
void |
AbstractRatingsService.unlike(Node node)
Removes a previous “like” of the specified node.
|
Comment |
AbstractCommentService.updateComment(Node node,
Comment comment,
String content)
Updates the given comment with the provided content.
|
Node |
AbstractDocumentFolderServiceImpl.updateProperties(Node node,
Map<String,Serializable> properties)
Updates the properties of the specified node.
|
Node |
AbstractDocumentFolderServiceImpl.updateProperties(Node node,
Map<String,Serializable> properties,
List<String> aspects)
Updates the properties for the given node and applies the given aspects.
|
protected Node |
AbstractDocumentFolderServiceImpl.updateProperties(Node node,
Map<String,Serializable> properties,
List<String> aspects,
boolean propertiesRequired) |
Modifier and Type | Method and Description |
---|---|
List<Node> |
OnPremiseDocumentFolderServiceImpl.getFavoriteNodes() |
PagingResult<Node> |
OnPremiseDocumentFolderServiceImpl.getFavoriteNodes(ListingContext listingContext) |
Modifier and Type | Method and Description |
---|---|
void |
OnPremiseDocumentFolderServiceImpl.addFavorite(Node node) |
void |
OnPremiseTaggingServiceImpl.addTags(Node node,
List<String> tags)
Adds a list of tags to a node.
|
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
OnPremiseCommentServiceImpl.getCommentsUrl(Node node,
ListingContext listingContext,
boolean isReadOperation)
Internal method to retrieve node comments url.
|
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
OnPremiseCommentServiceImpl.getCommentUrl(Node node,
Comment comment)
Internal method to retrieve a specific comment url.
|
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
OnPremiseRatingsServiceImpl.getRatingsUrl(Node node)
Internal method to retrieve a specific ratings url to like a node.
|
List<Tag> |
OnPremiseTaggingServiceImpl.getTags(Node node) |
PagingResult<Tag> |
OnPremiseTaggingServiceImpl.getTags(Node node,
ListingContext listingContext) |
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
OnPremiseRatingsServiceImpl.getUnlikeUrl(Node node)
Internal method to retrieve a specific ratings url to unlike a node.
|
boolean |
OnPremiseDocumentFolderServiceImpl.isFavorite(Node node) |
void |
OnPremiseDocumentFolderServiceImpl.removeFavorite(Node node) |
Modifier and Type | Method and Description |
---|---|
protected PagingResult<Node> |
PublicAPIDocumentFolderServiceImpl.computeFavorites(org.apache.chemistry.opencmis.commons.impl.UrlBuilder url) |
List<Node> |
PublicAPIDocumentFolderServiceImpl.getFavoriteNodes() |
PagingResult<Node> |
PublicAPIDocumentFolderServiceImpl.getFavoriteNodes(ListingContext listingContext) |
Modifier and Type | Method and Description |
---|---|
void |
PublicAPIDocumentFolderServiceImpl.addFavorite(Node node) |
void |
PublicAPITaggingServiceImpl.addTags(Node node,
List<String> tags)
Adds a list of tags to a node.
|
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
PublicAPICommentServiceImpl.getCommentsUrl(Node node,
ListingContext listingContext,
boolean isReadOperation)
Internal method to retrieve node comments url.
|
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
PublicAPICommentServiceImpl.getCommentUrl(Node node,
Comment comment)
Internal method to retrieve a specific comment url.
|
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
PublicAPIRatingsServiceImpl.getRatingsUrl(Node node)
Internal method to retrieve a specific ratings url to like a node.
|
List<Tag> |
PublicAPITaggingServiceImpl.getTags(Node node) |
PagingResult<Tag> |
PublicAPITaggingServiceImpl.getTags(Node node,
ListingContext listingContext) |
protected org.apache.chemistry.opencmis.commons.impl.UrlBuilder |
PublicAPIRatingsServiceImpl.getUnlikeUrl(Node node)
Internal method to retrieve a specific ratings url to unlike a node.
|
boolean |
PublicAPIDocumentFolderServiceImpl.isFavorite(Node node) |
void |
PublicAPIDocumentFolderServiceImpl.removeFavorite(Node node) |
Modifier and Type | Method and Description |
---|---|
int |
NodeComparator.compare(Node nodeA,
Node nodeB) |
Modifier and Type | Method and Description |
---|---|
void |
CustomRatingsService.applyStarRating(Node node,
float rating)
Apply 5 star rating to the specified node.
|
StarRating |
CustomRatingsService.getStarRating(Node node)
Get the star ratings value for the specified node (Document or Folder)
|
float |
CustomRatingsService.getUserStarRatingValue(Node node)
Get the user star ratings value for the specified node (Document or
Folder)
|
Modifier and Type | Method and Description |
---|---|
void |
CustomRatingsServiceImpl.applyStarRating(Node node,
float rating)
Apply 5 star rating to the specified node.
|
StarRating |
CustomRatingsServiceImpl.getStarRating(Node node)
Get the star ratings value for the specified node (Document or Folder)
|
float |
CustomRatingsServiceImpl.getUserStarRatingValue(Node node)
Get the user star ratings value for the specified node (Document or
Folder)
|
Copyright © 2012-2018 Alfresco Software. All Rights Reserved.