Package | Description |
---|---|
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.test |
Modifier and Type | Class and Description |
---|---|
class |
DocumentImpl
Document base object.
|
class |
DocumentLinkImpl
Document base object.
|
Modifier and Type | Class and Description |
---|---|
class |
CloudDocumentImpl |
Modifier and Type | Class and Description |
---|---|
class |
PublicAPIDocumentImpl |
Modifier and Type | Method and Description |
---|---|
Document |
VersionService.checkin(Document document,
boolean majorVersion,
ContentFile file,
Map<String,Serializable> properties,
String comment)
Checks in the private working copy document, if successful the new
version of the document is returned.
|
Document |
VersionService.checkout(Document document)
Checks out the document, if successful the private working copy is
returned.
|
Document |
DocumentFolderService.createDocument(Folder parentFolder,
String documentName,
Map<String,Serializable> properties,
ContentFile file)
Creates a document object in the specified location with an optional set
of properties.
|
Document |
DocumentFolderService.createDocument(Folder parentFolder,
String documentName,
Map<String,Serializable> properties,
ContentFile file,
List<String> aspects)
Creates a document object in the specified location with an optional set
of properties.
|
Document |
DocumentFolderService.createDocument(Folder parentFolder,
String documentName,
Map<String,Serializable> properties,
ContentFile file,
List<String> aspects,
String type)
Creates a document object in the specified location with an optional set
of properties.
|
Document |
VersionService.getLatestVersion(Document document)
Get the latest version of a document.
|
Document |
DocumentFolderService.updateContent(Document document,
ContentFile file)
Updates the content on the given document using the provided local file.
|
Modifier and Type | Method and Description |
---|---|
List<Document> |
VersionService.getCheckedOutDocuments()
Returns a list of documents the authenticated user has checked out.
|
PagingResult<Document> |
VersionService.getCheckedOutDocuments(ListingContext listingContext)
Returns a paged list of documents the authenticated user has checked out.
|
List<Document> |
DocumentFolderService.getDocuments(Folder folder)
Lists all immediate child documents of the given context node Note:
this could be a long list
|
PagingResult<Document> |
DocumentFolderService.getDocuments(Folder folder,
ListingContext listingContext)
Lists all immediate child documents of the given context folder.
|
List<Document> |
WorkflowService.getDocuments(Process process)
Returns a list items associated to the process.
|
PagingResult<Document> |
WorkflowService.getDocuments(Process process,
ListingContext listingContext) |
List<Document> |
WorkflowService.getDocuments(Task task)
Returns a list items associated to the the task.
|
PagingResult<Document> |
WorkflowService.getDocuments(Task task,
ListingContext listingContext) |
List<Document> |
DocumentFolderService.getFavoriteDocuments()
Returns a list of the current users favorite documents.
|
PagingResult<Document> |
DocumentFolderService.getFavoriteDocuments(ListingContext listingContext)
Returns a paged list of the current users favorite documents.
|
List<Document> |
VersionService.getVersions(Document document)
Get the version history that relates to the referenced document.
|
PagingResult<Document> |
VersionService.getVersions(Document document,
ListingContext listingContext)
Get the version history that relates to the referenced document.
|
Modifier and Type | Method and Description |
---|---|
void |
VersionService.cancelCheckout(Document document)
Cancels the check out of the document.
|
Document |
VersionService.checkin(Document document,
boolean majorVersion,
ContentFile file,
Map<String,Serializable> properties,
String comment)
Checks in the private working copy document, if successful the new
version of the document is returned.
|
Document |
VersionService.checkout(Document document)
Checks out the document, if successful the private working copy is
returned.
|
ContentFile |
DocumentFolderService.getContent(Document document)
Downloads the content for the given document.
|
ContentStream |
DocumentFolderService.getContentStream(Document document)
Downloads the content for the given document as InputStream.
|
NodeTypeDefinition |
ModelDefinitionService.getDocumentTypeDefinition(Document doc)
Returns the complete type definition for the given Document, the returned
definition will also include all properties from all applied aspects.
|
Document |
VersionService.getLatestVersion(Document document)
Get the latest version of a document.
|
List<Document> |
VersionService.getVersions(Document document)
Get the version history that relates to the referenced document.
|
PagingResult<Document> |
VersionService.getVersions(Document document,
ListingContext listingContext)
Get the version history that relates to the referenced document.
|
Document |
DocumentFolderService.updateContent(Document document,
ContentFile file)
Updates the content on the given document using the provided local file.
|
Modifier and Type | Method and Description |
---|---|
void |
WorkflowService.addDocuments(Task task,
List<Document> items)
Add a list of items to the the specified task.
|
void |
WorkflowService.removeDocuments(Task task,
List<Document> items)
Delete a list of items to the the task.
|
Process |
WorkflowService.startProcess(ProcessDefinition processDefinition,
List<Person> assignees,
Map<String,Serializable> variables,
List<Document> items)
Start a new process based on the specified process definition with an
optional set of variables and document attachments(items).
Variables keys must respect the same format as defined by the workflowModel inside the repository. |
Modifier and Type | Method and Description |
---|---|
Document |
VersionServiceImpl.checkin(Document document,
boolean majorVersion,
ContentFile contentFile,
Map<String,Serializable> properties,
String comment) |
Document |
VersionServiceImpl.checkout(Document document)
Checks out the document, if successful the private working copy is
returned.
|
Document |
AbstractDocumentFolderServiceImpl.createDocument(Folder parentFolder,
String documentName,
Map<String,Serializable> properties,
ContentFile contentFile)
Creates a document object in the specified location with an optional set
of properties.
|
Document |
AbstractDocumentFolderServiceImpl.createDocument(Folder parentFolder,
String documentName,
Map<String,Serializable> properties,
ContentFile contentFile,
List<String> aspects)
Creates a document object in the specified location with an optional set
of properties.
|
Document |
AbstractDocumentFolderServiceImpl.createDocument(Folder parentFolder,
String documentName,
Map<String,Serializable> properties,
ContentFile contentFile,
List<String> aspects,
String type)
Creates a document object in the specified location with an optional set
of properties.
|
Document |
VersionServiceImpl.getLatestVersion(Document document) |
Document |
AbstractDocumentFolderServiceImpl.updateContent(Document content,
ContentFile contentFile)
Updates the content on the given document using the provided local file.
|
Modifier and Type | Method and Description |
---|---|
List<Document> |
VersionServiceImpl.getCheckedOutDocuments() |
PagingResult<Document> |
VersionServiceImpl.getCheckedOutDocuments(ListingContext lcontext) |
List<Document> |
AbstractDocumentFolderServiceImpl.getDocuments(Folder folder)
Lists all immediate child documents of the given context node Note:
this could be a long list
|
PagingResult<Document> |
AbstractDocumentFolderServiceImpl.getDocuments(Folder folder,
ListingContext listingContext)
Lists all immediate child documents of the given context folder.
|
List<Document> |
AbstractWorkflowService.getDocuments(Process process)
Returns a list items associated to the process.
|
List<Document> |
AbstractWorkflowService.getDocuments(Task task)
Returns a list items associated to the the task.
|
List<Document> |
VersionServiceImpl.getVersions(Document document)
Get the version history that relates to the referenced document.
|
PagingResult<Document> |
VersionServiceImpl.getVersions(Document document,
ListingContext listingContext)
Get the version history that relates to the referenced document.
|
Modifier and Type | Method and Description |
---|---|
void |
VersionServiceImpl.cancelCheckout(Document document) |
Document |
VersionServiceImpl.checkin(Document document,
boolean majorVersion,
ContentFile contentFile,
Map<String,Serializable> properties,
String comment) |
Document |
VersionServiceImpl.checkout(Document document)
Checks out the document, if successful the private working copy is
returned.
|
ContentFile |
AbstractDocumentFolderServiceImpl.getContent(Document document)
Downloads the content for the given document.
|
ContentStream |
AbstractDocumentFolderServiceImpl.getContentStream(Document document)
Downloads the content for the given document as InputStream.
|
NodeTypeDefinition |
AbstractModelDefinitionService.getDocumentTypeDefinition(Document doc) |
String |
AbstractDocumentFolderServiceImpl.getDownloadUrl(Document document)
Internal : Retrieves the downloading url for the given document.
|
Document |
VersionServiceImpl.getLatestVersion(Document document) |
List<Document> |
VersionServiceImpl.getVersions(Document document)
Get the version history that relates to the referenced document.
|
PagingResult<Document> |
VersionServiceImpl.getVersions(Document document,
ListingContext listingContext)
Get the version history that relates to the referenced document.
|
Document |
AbstractDocumentFolderServiceImpl.updateContent(Document content,
ContentFile contentFile)
Updates the content on the given document using the provided local file.
|
Modifier and Type | Method and Description |
---|---|
PagingResult<Document> |
OnPremiseWorkflowServiceImpl.getDocuments(Process process,
ListingContext listingContext) |
PagingResult<Document> |
OnPremiseWorkflowServiceImpl.getDocuments(Task task,
ListingContext listingContext) |
List<Document> |
OnPremiseDocumentFolderServiceImpl.getFavoriteDocuments() |
PagingResult<Document> |
OnPremiseDocumentFolderServiceImpl.getFavoriteDocuments(ListingContext listingContext) |
protected PagingResult<Document> |
OnPremiseWorkflowServiceImpl.getItems(String id,
ListingContext listingContext) |
Modifier and Type | Method and Description |
---|---|
void |
OnPremiseWorkflowServiceImpl.addDocuments(Task task,
List<Document> items)
Add a list of items to the the specified task.
|
void |
OnPremiseWorkflowServiceImpl.removeDocuments(Task task,
List<Document> items)
Delete a list of items to the the task.
|
Process |
OnPremiseWorkflowServiceImpl.startProcess(ProcessDefinition processDefinition,
List<Person> assignees,
Map<String,Serializable> variables,
List<Document> items)
Start a new process based on the specified process definition with an
optional set of variables and document attachments(items).
Variables keys must respect the same format as defined by the workflowModel inside the repository. |
Modifier and Type | Method and Description |
---|---|
protected PagingResult<Document> |
PublicAPIDocumentFolderServiceImpl.computeDocumentFavorites(org.apache.chemistry.opencmis.commons.impl.UrlBuilder url) |
PagingResult<Document> |
PublicAPIWorkflowServiceImpl.getDocuments(Process process,
ListingContext listingContext) |
PagingResult<Document> |
PublicAPIWorkflowServiceImpl.getDocuments(Task task,
ListingContext listingContext) |
List<Document> |
PublicAPIDocumentFolderServiceImpl.getFavoriteDocuments() |
PagingResult<Document> |
PublicAPIDocumentFolderServiceImpl.getFavoriteDocuments(ListingContext listingContext) |
Modifier and Type | Method and Description |
---|---|
void |
PublicAPIWorkflowServiceImpl.addDocuments(Task task,
List<Document> items)
Add a list of items to the the specified task.
|
void |
PublicAPIWorkflowServiceImpl.removeDocuments(Task task,
List<Document> items)
Delete a list of items to the the task.
|
Process |
PublicAPIWorkflowServiceImpl.startProcess(ProcessDefinition processDefinition,
List<Person> assignees,
Map<String,Serializable> variables,
List<Document> items)
Start a new process based on the specified process definition with an
optional set of variables and document attachments(items).
Variables keys must respect the same format as defined by the workflowModel inside the repository. |
Modifier and Type | Method and Description |
---|---|
protected Document |
AlfrescoSDKTestCase.createDeletedDocument(Folder root,
String docName) |
protected Document |
AlfrescoSDKTestCase.createDocument(Folder folder,
String docName) |
protected Document |
AlfrescoSDKTestCase.createDocumentFromAsset(Folder root,
String assetName) |
protected Document |
AlfrescoSDKTestCase.createEmptyDocument(Folder root,
String docName) |
Copyright © 2012-2018 Alfresco Software. All Rights Reserved.