Difference between revisions of "Home Library 2.0 API Framework Specification"

From Gcube Wiki
Jump to: navigation, search
(Workspace Items)
(Replaced content with "== The Home Library has been deprecated by the new [https://wiki.gcube-system.org/gcube/StorageHub_REST_API StorageHub Service] == Please use the StorageHub service for fu...")
 
(333 intermediate revisions by 3 users not shown)
Line 1: Line 1:
= Home Library  2.0 API =
+
== The Home Library has been deprecated by the new [https://wiki.gcube-system.org/gcube/StorageHub_REST_API StorageHub Service] ==
 
+
Please use the StorageHub service for future developments: https://wiki.gcube-system.org/gcube/StorageHub_REST_API
The Home Library is a library to manage and persist the users homes. that supports file sharing
+
Home Library user is presented with a personal workspace, where users can collaborate, share information, and access project resources using special folders. This module describes the model of Home Library 2.0 and how to use the new API interface.
+
 
+
== Design Model ==
+
 
+
The '''design model''' for Home Library identifies a core set of capabilities that  ...
+
 
+
The Home Library is defined through an API interface ('''HomeLibrary''' project).
+
 
+
Currently there is just one API implementation:
+
* '''HomeLibraryJCR''': an HomeLibrary implementation based on JCR 2.0 (Java Content Repository [http://jcp.org/en/jsr/detail?id=283 JSR 283]).
+
 
+
The Home Library dynamically load the implementation specified on properties file.
+
 
+
The core of Home Library 2.0 is a webService build on the top of the Jackrabbit web application. The goal of Home Library 2.0 is to expose content in the content repository as HTTP resources, fostering a RESTful style of application architecture.
+
[[File:WebApp.png]]
+
 
+
===Workspace Items===
+
 
+
Each element contained in a workspace area is a WorkspaceItem.The workspace items are the effective user objects.
+
 
+
The following figure shows the WorkspaceItem model.
+
[[File:areamodel.png]]
+
 
+
The following objects have been removed:
+
 
+
AquaMapsItem();
+
Annotation();
+
DocumentLink();
+
ImageDocumentLink();
+
PDFDocumentLink();
+
Annotation();
+
TabularDataLink();
+
ExternalResourceLink();
+
WorkflowReport();
+
WorkflowTemplate();
+
 
+
Objects mapped to gCubeItem:
+
 
+
Document();
+
DocumentMetadata();
+
ImageDocument();
+
Metadata();
+
PDFDocument();
+
UrlDocument();
+
 
+
== Implementation Framework ==
+
 
+
The '''Home Library  2.0 API''' is a set of components that support the development of .... that comply with the model. Through code sharing, the framework reduces development costs and ensures the consistency and correctness of library implementations.
+
 
+
== Management Model ==
+
If Needed
+
 
+
 
+
== How to ==
+
To use Home Library 2.0, import the following dependencies:
+
<source lang="xml">
+
<dependency>
+
<groupId>org.gcube.common</groupId>
+
<artifactId>home-library-jcr</artifactId>
+
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
+
</dependency>
+
+
<dependency>
+
<groupId>org.gcube.common</groupId>
+
<artifactId>home-library</artifactId>
+
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
+
</dependency>
+
</source>
+
 
+
Learn how to use the Home Library 2.0 API Framework with this examples ...
+

Latest revision as of 11:52, 18 January 2019

The Home Library has been deprecated by the new StorageHub Service

Please use the StorageHub service for future developments: https://wiki.gcube-system.org/gcube/StorageHub_REST_API