SlideShare a Scribd company logo
eRCP
OSGi-based
Why plugins?

   OSGi-based use
   Easy...
       extensibility and programming
     to upgrade versions
    
      create new Restlets,
      Documents and Actions
Extension points
   Document
       New documents and mimetypes.
   Restlet
       Create document, ... Manage users...,
        UploadFile...
   Menu
       Friendly UI with ListView and ListBox.
   BrowseActions
       Make actions into the browse.
       Manage permissions.
Extension point:          Document
<extension                
point="es.yerbabuena.ercp.api.documentPlugin.documents">
   <document
            icon="icons/note.gif"
            id="Note"
            name="Note"
            priority="8">
         <allowedOperations
               operation="EDIT">
         </allowedOperations>
         <allowedOperations
               operation="VIEW">
         </allowedOperations>
         <allowedOperations
               operation="METADATA">
         </allowedOperations>
         <allowedOperations
               operation="DELETE">
         </allowedOperations>
   </document>
   ...
</extension>
Extension point:          Mimetype

<extension                
point="es.yerbabuena.ercp.api.documentPlugin.documents">
   <document
        icon="icons/zip.gif"
        id="zip"
        inheritedOf="File"
        inheritedOps="false"
        mimetype="application/zip"
        name="Zip"
        priority="4">
     <allowedOperations
           operation="PREVIEW">
     </allowedOperations>
   </document>
   ...
</extension>
Extension point:         Server

   <extension
         point="es.yerbabuena.ercp.api.server.servers">
      <server            
            id="ercpServer"
            host=”ercp.yerbabuena.es"            
            path="/"
            port="8080"
            protocol="HTTP"
            withAuthentication="true">
         <authentication
               password="Administrator"
               username="Administrator">
         </authentication>
      </server>
   </extension>
Extension point:   Restlet

●   Automatic restlet execution.
●   Associated view (eRCP UI View)
●   Pattern specification ( API   Restlet based ).

●   Inherited authentication from server.
●   Prepare to BrowseAction plugin.
Extension point:          Restlet


 <extension point="es.yerbabuena.ercp.api.restlet.restlet">
 <restlet           
      handler="es.yerbabuena.ercp.ext.restlet.uploadFile
                                         .UploadFileRestlet"      
      view=”es.yerbabuena.ercp.view.UploadFileView”
      method="GET"
      name="UploadFileRestlet"
      pattern="/nuxeo/restAPI/{repo}/{parentId}
                                               /{filename}/uploadFile"
      server="ercpServer">
   <authentication inherit="true"/>
 </restlet>
</extension>
Extension point:          Restlet


<extension point="es.yerbabuena.ercp.api.restlet.restlet">
 <restlet        
      handler="es.yerbabuena.ercp.ext.restlet.uploadFile
                                             .UploadFileRestlet"
      method="POST"
      name="UploadFileRestlet"
      pattern="/nuxeo/restAPI/{repo}/{parentId}
                                           /{filename}/uploadFile"    
   
      server="ercpServer">
   <authentication>
       <username>Administrator</username>
       <password>Administrator</password>
    </authentication>
 </restlet>
</extension>
Extension point:   BrowseAction

  ●   Restlets compatibility
  ●Action mode: Command, Contextual
  menu or Menu Plugin access.
  ●   Documents and categories associated
  ●   Manage permissions
Extension point:        BrowseAction

 <extension point="BrowseActionPlugin.RestletAction">
    <action id="CreateDocumentAction"
            restlet="CreateDocumentRestlet">
       <command id="CreateDocumentActionCommand"
          actionListener="es.yerbabuena.ercp.ext.restlet
                                 .createDocument.CreateDocumentAction"
          caption="Create document"
          mode="command"
          priority="1"
          type="OK">
       </command>
       <assignedDocuments>
          <category id="Workspaces"/>
       </assignedDocuments>
       <permission
           id="ReadWrite">
       </permission>
    </action>
 </extension>
Extension point:        BrowseAction
 <extension point="BrowseActionPlugin.RestletAction">
    <action id="publish.action">
       <command id="publish.command"     
           actionListener="es.yerbabuena.ercp.ext.restlet
                               .publishDocument.PublishDocumentAction"
           caption="Publish"
           enabled="true"          
           mode="command"
           priority="5"
           type="OK">
       </command>
       <assignedDocuments>
          <document id="Note"/>
          <document id="Forum"/>
          <document id="PDF"/>
       </assignedDocuments>
       <permission id="ReadWrite"/>
    </action>
 </extension>
Extension point:        BrowseAction
 <extension point="BrowseActionPlugin.RestletAction">
    <action id="cut.action">
       <command id="cut.command"
          actionListener="es.yerbabuena.ercp.ext.restlet
                                            .browseActions.CutAction"
          caption="Cut"         
          mode="command"
          priority="1"
          type="SELECT">
       </command>
       <assignedDocuments>
          <category
              id="ALL">
          </category>
       </assignedDocuments>
       <permission
             id="Remove">
       </permission>
    </action>
 </extension>
Extension point:          Menu
<extension point="es.yerbabuena.ercp.ui.menu.menus">
   <menu id="es.yerbabuena.ercp.menu.FrontMenu"
        name="FrontMenu" 
         type=”ListView”        
   </menu>
   <menu­item id="DocumentManager"
        action="es.yerbabuena.ercp.action.DocumentManagerAction"
        description="Acceda a gestionar sus documentos"
        icon="icons/system­file­manager.gif"
        menu="es.yerbabuena.ercp.menu.FrontMenu"
        name="%menu.frontmenu.documentmanager"
        priority="1">
   </menu­item>
   <menu­item id="ViewPreferences"
        action="es.yerbabuena.ercp.action.ViewPreferences"
        description="Configure Yerbabuena eRCP"
        icon="icons/preferences­system.gif"
        menu="es.yerbabuena.ercp.menu.FrontMenu"
        name="%menu.frontmenu.preferences"
        priority="5">
   </menu­item>
</extension>
Extension point:          Menu-item


<extension point="es.yerbabuena.ercp.ui.menu.menus">
   <menu­item id="manageusers"
       action="es.yerbabuena.ercp.ext.restlet
                    .manageUsersAndGroups.ManageUsersAndGroupsAction"
     description="Control de permisos de Usuarios y Grupos"
       icon="icons/system­users.gif"
       menu="es.yerbabuena.ercp.menu.FrontMenu"
       name="Manage Users And Groups"
       priority="2">
   </menu­item>
</extension>
Thank you




   Yerbabuena Software
    www.yerbabuena.es
yerbabuena@yerbabuena.es
     T. 902 995 246

More Related Content

What's hot

Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
Joao Lucas Santana
 
BPM-3 Advanced Workflow Deep Dive
BPM-3 Advanced Workflow Deep DiveBPM-3 Advanced Workflow Deep Dive
BPM-3 Advanced Workflow Deep Dive
Alfresco Software
 
JavaServer Faces 2.0 - JavaOne India 2011
JavaServer Faces 2.0 - JavaOne India 2011JavaServer Faces 2.0 - JavaOne India 2011
JavaServer Faces 2.0 - JavaOne India 2011
Arun Gupta
 
AnkaraJUG Kasım 2012 - PrimeFaces
AnkaraJUG Kasım 2012 - PrimeFacesAnkaraJUG Kasım 2012 - PrimeFaces
AnkaraJUG Kasım 2012 - PrimeFaces
Ankara JUG
 
Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0
Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0
Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0
Arun Gupta
 
Angular js
Angular jsAngular js
Angular js
Eueung Mulyana
 
Ruby on Rails : RESTful 和 Ajax
Ruby on Rails : RESTful 和 AjaxRuby on Rails : RESTful 和 Ajax
Ruby on Rails : RESTful 和 Ajax
Wen-Tien Chang
 
Trustparency web doc spring 2.5 & hibernate
Trustparency web doc   spring 2.5 & hibernateTrustparency web doc   spring 2.5 & hibernate
Trustparency web doc spring 2.5 & hibernate
trustparency
 
浜松Rails3道場 其の参 Controller編
浜松Rails3道場 其の参 Controller編浜松Rails3道場 其の参 Controller編
浜松Rails3道場 其の参 Controller編
Masakuni Kato
 
Spout - Building a RESTful web app with Angular.js and BEAR.Sunday
Spout - Building a RESTful web app with Angular.js and BEAR.SundaySpout - Building a RESTful web app with Angular.js and BEAR.Sunday
Spout - Building a RESTful web app with Angular.js and BEAR.Sunday
Richard McIntyre
 
Codegnitorppt
CodegnitorpptCodegnitorppt
Codegnitorppt
sreedath c g
 
Plugins on OnDemand with Remote Apps - Atlassian Summit 2012
Plugins on OnDemand with Remote Apps - Atlassian Summit 2012 Plugins on OnDemand with Remote Apps - Atlassian Summit 2012
Plugins on OnDemand with Remote Apps - Atlassian Summit 2012
Atlassian
 
Django Class-based views (Slovenian)
Django Class-based views (Slovenian)Django Class-based views (Slovenian)
Django Class-based views (Slovenian)
Luka Zakrajšek
 
Mashing up JavaScript
Mashing up JavaScriptMashing up JavaScript
Mashing up JavaScript
Bastian Hofmann
 
Big Data for each one of us
Big Data for each one of usBig Data for each one of us
Big Data for each one of us
OSCON Byrum
 
Desbravando Web Components
Desbravando Web ComponentsDesbravando Web Components
Desbravando Web Components
Mateus Ortiz
 
JSF 2.0 (JavaEE Webinar)
JSF 2.0 (JavaEE Webinar)JSF 2.0 (JavaEE Webinar)
JSF 2.0 (JavaEE Webinar)
Roger Kitain
 
Jsf
JsfJsf
23.simple login with sessions in laravel 5
23.simple login with sessions in laravel 523.simple login with sessions in laravel 5
23.simple login with sessions in laravel 5
Razvan Raducanu, PhD
 
An introduction to Laravel Passport
An introduction to Laravel PassportAn introduction to Laravel Passport
An introduction to Laravel Passport
Michael Peacock
 

What's hot (20)

Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
 
BPM-3 Advanced Workflow Deep Dive
BPM-3 Advanced Workflow Deep DiveBPM-3 Advanced Workflow Deep Dive
BPM-3 Advanced Workflow Deep Dive
 
JavaServer Faces 2.0 - JavaOne India 2011
JavaServer Faces 2.0 - JavaOne India 2011JavaServer Faces 2.0 - JavaOne India 2011
JavaServer Faces 2.0 - JavaOne India 2011
 
AnkaraJUG Kasım 2012 - PrimeFaces
AnkaraJUG Kasım 2012 - PrimeFacesAnkaraJUG Kasım 2012 - PrimeFaces
AnkaraJUG Kasım 2012 - PrimeFaces
 
Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0
Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0
Spark IT 2011 - Simplified Web Development using Java Server Faces 2.0
 
Angular js
Angular jsAngular js
Angular js
 
Ruby on Rails : RESTful 和 Ajax
Ruby on Rails : RESTful 和 AjaxRuby on Rails : RESTful 和 Ajax
Ruby on Rails : RESTful 和 Ajax
 
Trustparency web doc spring 2.5 & hibernate
Trustparency web doc   spring 2.5 & hibernateTrustparency web doc   spring 2.5 & hibernate
Trustparency web doc spring 2.5 & hibernate
 
浜松Rails3道場 其の参 Controller編
浜松Rails3道場 其の参 Controller編浜松Rails3道場 其の参 Controller編
浜松Rails3道場 其の参 Controller編
 
Spout - Building a RESTful web app with Angular.js and BEAR.Sunday
Spout - Building a RESTful web app with Angular.js and BEAR.SundaySpout - Building a RESTful web app with Angular.js and BEAR.Sunday
Spout - Building a RESTful web app with Angular.js and BEAR.Sunday
 
Codegnitorppt
CodegnitorpptCodegnitorppt
Codegnitorppt
 
Plugins on OnDemand with Remote Apps - Atlassian Summit 2012
Plugins on OnDemand with Remote Apps - Atlassian Summit 2012 Plugins on OnDemand with Remote Apps - Atlassian Summit 2012
Plugins on OnDemand with Remote Apps - Atlassian Summit 2012
 
Django Class-based views (Slovenian)
Django Class-based views (Slovenian)Django Class-based views (Slovenian)
Django Class-based views (Slovenian)
 
Mashing up JavaScript
Mashing up JavaScriptMashing up JavaScript
Mashing up JavaScript
 
Big Data for each one of us
Big Data for each one of usBig Data for each one of us
Big Data for each one of us
 
Desbravando Web Components
Desbravando Web ComponentsDesbravando Web Components
Desbravando Web Components
 
JSF 2.0 (JavaEE Webinar)
JSF 2.0 (JavaEE Webinar)JSF 2.0 (JavaEE Webinar)
JSF 2.0 (JavaEE Webinar)
 
Jsf
JsfJsf
Jsf
 
23.simple login with sessions in laravel 5
23.simple login with sessions in laravel 523.simple login with sessions in laravel 5
23.simple login with sessions in laravel 5
 
An introduction to Laravel Passport
An introduction to Laravel PassportAn introduction to Laravel Passport
An introduction to Laravel Passport
 

Similar to Yerbabuena eRCP OSGi-based

Rich Portlet Development in uPortal
Rich Portlet Development in uPortalRich Portlet Development in uPortal
Rich Portlet Development in uPortal
Jennifer Bourey
 
Building com Phing - 7Masters PHP
Building com Phing - 7Masters PHPBuilding com Phing - 7Masters PHP
Building com Phing - 7Masters PHP
iMasters
 
Rails 3 overview
Rails 3 overviewRails 3 overview
Rails 3 overview
Yehuda Katz
 
ASP.NET Overview - Alvin Lau
ASP.NET Overview - Alvin LauASP.NET Overview - Alvin Lau
ASP.NET Overview - Alvin Lau
Spiffy
 
Rails 3: Dashing to the Finish
Rails 3: Dashing to the FinishRails 3: Dashing to the Finish
Rails 3: Dashing to the Finish
Yehuda Katz
 
Ride on the Fast Track of Web with Ruby on Rails- Part 2
Ride on the Fast Track of Web with Ruby on Rails- Part 2Ride on the Fast Track of Web with Ruby on Rails- Part 2
Ride on the Fast Track of Web with Ruby on Rails- Part 2
A.K.M. Ahsrafuzzaman
 
How to create a magento controller in magento extension
How to create a magento controller in magento extensionHow to create a magento controller in magento extension
How to create a magento controller in magento extension
Hendy Irawan
 
Pom
PomPom
Pom
akmini
 
Pom configuration java xml
Pom configuration java xmlPom configuration java xml
Pom configuration java xml
akmini
 
Primefaces Nextgen Lju
Primefaces Nextgen LjuPrimefaces Nextgen Lju
Primefaces Nextgen Lju
Skills Matter
 
Primefaces Nextgen Lju
Primefaces Nextgen LjuPrimefaces Nextgen Lju
Primefaces Nextgen Lju
Skills Matter
 
Spring Web Flow. A little flow of happiness.
Spring Web Flow. A little flow of happiness.Spring Web Flow. A little flow of happiness.
Spring Web Flow. A little flow of happiness.
Alex Tumanoff
 
JSP
JSPJSP
RichFaces: more concepts and features
RichFaces: more concepts and featuresRichFaces: more concepts and features
RichFaces: more concepts and features
Max Katz
 
Java Web Development with Stripes
Java Web Development with StripesJava Web Development with Stripes
Java Web Development with Stripes
Samuel Santos
 
Modularized Persistence - B Zsoldos
Modularized Persistence - B ZsoldosModularized Persistence - B Zsoldos
Modularized Persistence - B Zsoldos
mfrancis
 
Action Controller Overview, Season 2
Action Controller Overview, Season 2Action Controller Overview, Season 2
Action Controller Overview, Season 2
RORLAB
 
Struts Overview
Struts OverviewStruts Overview
Struts Overview
elliando dias
 
Resource and view
Resource and viewResource and view
Resource and view
Papp Laszlo
 
What You Need To Build Cool Enterprise Applications With JSF
What You Need To Build Cool Enterprise Applications With JSFWhat You Need To Build Cool Enterprise Applications With JSF
What You Need To Build Cool Enterprise Applications With JSF
Max Katz
 

Similar to Yerbabuena eRCP OSGi-based (20)

Rich Portlet Development in uPortal
Rich Portlet Development in uPortalRich Portlet Development in uPortal
Rich Portlet Development in uPortal
 
Building com Phing - 7Masters PHP
Building com Phing - 7Masters PHPBuilding com Phing - 7Masters PHP
Building com Phing - 7Masters PHP
 
Rails 3 overview
Rails 3 overviewRails 3 overview
Rails 3 overview
 
ASP.NET Overview - Alvin Lau
ASP.NET Overview - Alvin LauASP.NET Overview - Alvin Lau
ASP.NET Overview - Alvin Lau
 
Rails 3: Dashing to the Finish
Rails 3: Dashing to the FinishRails 3: Dashing to the Finish
Rails 3: Dashing to the Finish
 
Ride on the Fast Track of Web with Ruby on Rails- Part 2
Ride on the Fast Track of Web with Ruby on Rails- Part 2Ride on the Fast Track of Web with Ruby on Rails- Part 2
Ride on the Fast Track of Web with Ruby on Rails- Part 2
 
How to create a magento controller in magento extension
How to create a magento controller in magento extensionHow to create a magento controller in magento extension
How to create a magento controller in magento extension
 
Pom
PomPom
Pom
 
Pom configuration java xml
Pom configuration java xmlPom configuration java xml
Pom configuration java xml
 
Primefaces Nextgen Lju
Primefaces Nextgen LjuPrimefaces Nextgen Lju
Primefaces Nextgen Lju
 
Primefaces Nextgen Lju
Primefaces Nextgen LjuPrimefaces Nextgen Lju
Primefaces Nextgen Lju
 
Spring Web Flow. A little flow of happiness.
Spring Web Flow. A little flow of happiness.Spring Web Flow. A little flow of happiness.
Spring Web Flow. A little flow of happiness.
 
JSP
JSPJSP
JSP
 
RichFaces: more concepts and features
RichFaces: more concepts and featuresRichFaces: more concepts and features
RichFaces: more concepts and features
 
Java Web Development with Stripes
Java Web Development with StripesJava Web Development with Stripes
Java Web Development with Stripes
 
Modularized Persistence - B Zsoldos
Modularized Persistence - B ZsoldosModularized Persistence - B Zsoldos
Modularized Persistence - B Zsoldos
 
Action Controller Overview, Season 2
Action Controller Overview, Season 2Action Controller Overview, Season 2
Action Controller Overview, Season 2
 
Struts Overview
Struts OverviewStruts Overview
Struts Overview
 
Resource and view
Resource and viewResource and view
Resource and view
 
What You Need To Build Cool Enterprise Applications With JSF
What You Need To Build Cool Enterprise Applications With JSFWhat You Need To Build Cool Enterprise Applications With JSF
What You Need To Build Cool Enterprise Applications With JSF
 

More from Yerbabuena Software

Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013
Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013
Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013
Yerbabuena Software
 
El ROI de mi proyecto de Digitalización y Gestión Documental
El ROI de mi proyecto de Digitalización y Gestión Documental  El ROI de mi proyecto de Digitalización y Gestión Documental
El ROI de mi proyecto de Digitalización y Gestión Documental
Yerbabuena Software
 
The Return on Investment of my Digitalization Project, Step by Step
The Return on Investment of my Digitalization Project, Step by StepThe Return on Investment of my Digitalization Project, Step by Step
The Return on Investment of my Digitalization Project, Step by Step
Yerbabuena Software
 
¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...
¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...
¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...
Yerbabuena Software
 
Intelligent Document Management in businesses and e-Administration
Intelligent Document Management in businesses and e-AdministrationIntelligent Document Management in businesses and e-Administration
Intelligent Document Management in businesses and e-Administration
Yerbabuena Software
 
White Paper: Digitalización y Captura Inteligente de Documentos
White Paper: Digitalización y Captura Inteligente de DocumentosWhite Paper: Digitalización y Captura Inteligente de Documentos
White Paper: Digitalización y Captura Inteligente de Documentos
Yerbabuena Software
 
Athento Suite Product Sheet
Athento Suite Product SheetAthento Suite Product Sheet
Athento Suite Product Sheet
Yerbabuena Software
 
Product Sheet Athento Platform
Product Sheet Athento PlatformProduct Sheet Athento Platform
Product Sheet Athento Platform
Yerbabuena Software
 
Paperless Pharmacy (Athento e-Health Product Sheet)
Paperless Pharmacy (Athento e-Health Product Sheet)Paperless Pharmacy (Athento e-Health Product Sheet)
Paperless Pharmacy (Athento e-Health Product Sheet)
Yerbabuena Software
 
Farmacia Sin Papel (Product Sheet Athento e-Sanidad)
Farmacia Sin Papel (Product Sheet Athento e-Sanidad)Farmacia Sin Papel (Product Sheet Athento e-Sanidad)
Farmacia Sin Papel (Product Sheet Athento e-Sanidad)
Yerbabuena Software
 
Product Sheet Athento e-Admin
Product Sheet Athento e-AdminProduct Sheet Athento e-Admin
Product Sheet Athento e-Admin
Yerbabuena Software
 
Athento e-Administration Product Sheet
Athento e-Administration Product Sheet Athento e-Administration Product Sheet
Athento e-Administration Product Sheet
Yerbabuena Software
 
Athento Capture Product Sheet
Athento Capture Product SheetAthento Capture Product Sheet
Athento Capture Product Sheet
Yerbabuena Software
 
Product Sheet Athento Capture
Product Sheet Athento CaptureProduct Sheet Athento Capture
Product Sheet Athento Capture
Yerbabuena Software
 
Higea CDS
Higea CDSHigea CDS
Consentimiento Informado
Consentimiento InformadoConsentimiento Informado
Consentimiento Informado
Yerbabuena Software
 
Athento Management Agency
Athento Management AgencyAthento Management Agency
Athento Management Agency
Yerbabuena Software
 
Athento e-Government
Athento e-GovernmentAthento e-Government
Athento e-Government
Yerbabuena Software
 
Yerbabuena-Partners
Yerbabuena-PartnersYerbabuena-Partners
Yerbabuena-Partners
Yerbabuena Software
 

More from Yerbabuena Software (20)

Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013
Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013
Silicon Málaga, Yerbabuena Software en la Revista Glamour Julio 2013
 
El ROI de mi proyecto de Digitalización y Gestión Documental
El ROI de mi proyecto de Digitalización y Gestión Documental  El ROI de mi proyecto de Digitalización y Gestión Documental
El ROI de mi proyecto de Digitalización y Gestión Documental
 
The Return on Investment of my Digitalization Project, Step by Step
The Return on Investment of my Digitalization Project, Step by StepThe Return on Investment of my Digitalization Project, Step by Step
The Return on Investment of my Digitalization Project, Step by Step
 
¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...
¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...
¿Cómo maneja mi plataforma de gestión documental los metadatos? y ¿Por qué de...
 
Intelligent Document Management in businesses and e-Administration
Intelligent Document Management in businesses and e-AdministrationIntelligent Document Management in businesses and e-Administration
Intelligent Document Management in businesses and e-Administration
 
White Paper: Digitalización y Captura Inteligente de Documentos
White Paper: Digitalización y Captura Inteligente de DocumentosWhite Paper: Digitalización y Captura Inteligente de Documentos
White Paper: Digitalización y Captura Inteligente de Documentos
 
Athento Suite Product Sheet
Athento Suite Product SheetAthento Suite Product Sheet
Athento Suite Product Sheet
 
Product sheet Athento Suite
Product sheet Athento SuiteProduct sheet Athento Suite
Product sheet Athento Suite
 
Product Sheet Athento Platform
Product Sheet Athento PlatformProduct Sheet Athento Platform
Product Sheet Athento Platform
 
Paperless Pharmacy (Athento e-Health Product Sheet)
Paperless Pharmacy (Athento e-Health Product Sheet)Paperless Pharmacy (Athento e-Health Product Sheet)
Paperless Pharmacy (Athento e-Health Product Sheet)
 
Farmacia Sin Papel (Product Sheet Athento e-Sanidad)
Farmacia Sin Papel (Product Sheet Athento e-Sanidad)Farmacia Sin Papel (Product Sheet Athento e-Sanidad)
Farmacia Sin Papel (Product Sheet Athento e-Sanidad)
 
Product Sheet Athento e-Admin
Product Sheet Athento e-AdminProduct Sheet Athento e-Admin
Product Sheet Athento e-Admin
 
Athento e-Administration Product Sheet
Athento e-Administration Product Sheet Athento e-Administration Product Sheet
Athento e-Administration Product Sheet
 
Athento Capture Product Sheet
Athento Capture Product SheetAthento Capture Product Sheet
Athento Capture Product Sheet
 
Product Sheet Athento Capture
Product Sheet Athento CaptureProduct Sheet Athento Capture
Product Sheet Athento Capture
 
Higea CDS
Higea CDSHigea CDS
Higea CDS
 
Consentimiento Informado
Consentimiento InformadoConsentimiento Informado
Consentimiento Informado
 
Athento Management Agency
Athento Management AgencyAthento Management Agency
Athento Management Agency
 
Athento e-Government
Athento e-GovernmentAthento e-Government
Athento e-Government
 
Yerbabuena-Partners
Yerbabuena-PartnersYerbabuena-Partners
Yerbabuena-Partners
 

Recently uploaded

AI Transformation Playbook: Thinking AI-First for Your Business
AI Transformation Playbook: Thinking AI-First for Your BusinessAI Transformation Playbook: Thinking AI-First for Your Business
AI Transformation Playbook: Thinking AI-First for Your Business
Arijit Dutta
 
Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...
Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...
Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...
my Pandit
 
The latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from NewentideThe latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from Newentide
JoeYangGreatMachiner
 
DearbornMusic-KatherineJasperFullSailUni
DearbornMusic-KatherineJasperFullSailUniDearbornMusic-KatherineJasperFullSailUni
DearbornMusic-KatherineJasperFullSailUni
katiejasper96
 
list of states and organizations .pdf
list of  states  and  organizations .pdflist of  states  and  organizations .pdf
list of states and organizations .pdf
Rbc Rbcua
 
Discover the Beauty and Functionality of The Expert Remodeling Service
Discover the Beauty and Functionality of The Expert Remodeling ServiceDiscover the Beauty and Functionality of The Expert Remodeling Service
Discover the Beauty and Functionality of The Expert Remodeling Service
obriengroupinc04
 
Pitch Deck Teardown: Kinnect's $250k Angel deck
Pitch Deck Teardown: Kinnect's $250k Angel deckPitch Deck Teardown: Kinnect's $250k Angel deck
Pitch Deck Teardown: Kinnect's $250k Angel deck
HajeJanKamps
 
PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...
PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...
PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...
Ksquare Energy Pvt. Ltd.
 
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdfThe Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
thesiliconleaders
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Kirill Klip GEM Royalty TNR Gold Lithium Presentation
Kirill Klip GEM Royalty TNR Gold Lithium PresentationKirill Klip GEM Royalty TNR Gold Lithium Presentation
Kirill Klip GEM Royalty TNR Gold Lithium Presentation
Kirill Klip
 
The Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb PlatformThe Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb Platform
SabaaSudozai
 
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian MatkaDpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
dpbossdpboss69
 
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Kalyan Satta Matka Guessing Matka Result Main Bazar chart
 
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
taqyea
 
欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】
欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】
欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】
valvereliz227
 
一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理
一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理
一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理
taqyea
 
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
Lacey Max
 
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
APCO
 
CULR Spring 2024 Journal.pdf testing for duke
CULR Spring 2024 Journal.pdf testing for dukeCULR Spring 2024 Journal.pdf testing for duke
CULR Spring 2024 Journal.pdf testing for duke
ZevinAttisha
 

Recently uploaded (20)

AI Transformation Playbook: Thinking AI-First for Your Business
AI Transformation Playbook: Thinking AI-First for Your BusinessAI Transformation Playbook: Thinking AI-First for Your Business
AI Transformation Playbook: Thinking AI-First for Your Business
 
Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...
Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...
Unveiling the Dynamic Personalities, Key Dates, and Horoscope Insights: Gemin...
 
The latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from NewentideThe latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from Newentide
 
DearbornMusic-KatherineJasperFullSailUni
DearbornMusic-KatherineJasperFullSailUniDearbornMusic-KatherineJasperFullSailUni
DearbornMusic-KatherineJasperFullSailUni
 
list of states and organizations .pdf
list of  states  and  organizations .pdflist of  states  and  organizations .pdf
list of states and organizations .pdf
 
Discover the Beauty and Functionality of The Expert Remodeling Service
Discover the Beauty and Functionality of The Expert Remodeling ServiceDiscover the Beauty and Functionality of The Expert Remodeling Service
Discover the Beauty and Functionality of The Expert Remodeling Service
 
Pitch Deck Teardown: Kinnect's $250k Angel deck
Pitch Deck Teardown: Kinnect's $250k Angel deckPitch Deck Teardown: Kinnect's $250k Angel deck
Pitch Deck Teardown: Kinnect's $250k Angel deck
 
PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...
PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...
PM Surya Ghar Muft Bijli Yojana: Online Application, Eligibility, Subsidies &...
 
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdfThe Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Kirill Klip GEM Royalty TNR Gold Lithium Presentation
Kirill Klip GEM Royalty TNR Gold Lithium PresentationKirill Klip GEM Royalty TNR Gold Lithium Presentation
Kirill Klip GEM Royalty TNR Gold Lithium Presentation
 
The Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb PlatformThe Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb Platform
 
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian MatkaDpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
 
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
 
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
 
欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】
欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】
欧洲杯赌球-欧洲杯赌球买球官方官网-欧洲杯赌球比赛投注官网|【​网址​🎉ac55.net🎉​】
 
一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理
一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理
一比一原版(QMUE毕业证书)英国爱丁堡玛格丽特女王大学毕业证文凭如何办理
 
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
 
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
 
CULR Spring 2024 Journal.pdf testing for duke
CULR Spring 2024 Journal.pdf testing for dukeCULR Spring 2024 Journal.pdf testing for duke
CULR Spring 2024 Journal.pdf testing for duke
 

Yerbabuena eRCP OSGi-based

  • 2. Why plugins?  OSGi-based use  Easy...  extensibility and programming  to upgrade versions  create new Restlets, Documents and Actions
  • 3. Extension points  Document  New documents and mimetypes.  Restlet  Create document, ... Manage users..., UploadFile...  Menu  Friendly UI with ListView and ListBox.  BrowseActions  Make actions into the browse.  Manage permissions.
  • 4. Extension point: Document <extension                 point="es.yerbabuena.ercp.api.documentPlugin.documents"> <document             icon="icons/note.gif"             id="Note"             name="Note"             priority="8">          <allowedOperations                operation="EDIT">          </allowedOperations>          <allowedOperations                operation="VIEW">          </allowedOperations>          <allowedOperations                operation="METADATA">          </allowedOperations>          <allowedOperations                operation="DELETE">          </allowedOperations>    </document> ... </extension>
  • 5. Extension point: Mimetype <extension                 point="es.yerbabuena.ercp.api.documentPlugin.documents"> <document         icon="icons/zip.gif"         id="zip"         inheritedOf="File"         inheritedOps="false"         mimetype="application/zip"         name="Zip"         priority="4">      <allowedOperations            operation="PREVIEW">      </allowedOperations>    </document> ... </extension>
  • 6. Extension point: Server <extension          point="es.yerbabuena.ercp.api.server.servers">       <server               id="ercpServer"   host=”ercp.yerbabuena.es"                         path="/"             port="8080"             protocol="HTTP"             withAuthentication="true">          <authentication                password="Administrator"                username="Administrator">          </authentication>       </server>    </extension>
  • 7. Extension point: Restlet ● Automatic restlet execution. ● Associated view (eRCP UI View) ● Pattern specification ( API Restlet based ). ● Inherited authentication from server. ● Prepare to BrowseAction plugin.
  • 8. Extension point: Restlet <extension point="es.yerbabuena.ercp.api.restlet.restlet">  <restlet               handler="es.yerbabuena.ercp.ext.restlet.uploadFile  .UploadFileRestlet"           view=”es.yerbabuena.ercp.view.UploadFileView”       method="GET"       name="UploadFileRestlet"       pattern="/nuxeo/restAPI/{repo}/{parentId} /{filename}/uploadFile"       server="ercpServer">    <authentication inherit="true"/>  </restlet> </extension>
  • 9. Extension point: Restlet <extension point="es.yerbabuena.ercp.api.restlet.restlet">  <restlet               handler="es.yerbabuena.ercp.ext.restlet.uploadFile   .UploadFileRestlet"       method="POST"       name="UploadFileRestlet"       pattern="/nuxeo/restAPI/{repo}/{parentId} /{filename}/uploadFile"               server="ercpServer">    <authentication> <username>Administrator</username> <password>Administrator</password> </authentication>  </restlet> </extension>
  • 10. Extension point: BrowseAction ● Restlets compatibility ●Action mode: Command, Contextual menu or Menu Plugin access. ● Documents and categories associated ● Manage permissions
  • 11. Extension point: BrowseAction <extension point="BrowseActionPlugin.RestletAction">    <action id="CreateDocumentAction"            restlet="CreateDocumentRestlet">       <command id="CreateDocumentActionCommand"       actionListener="es.yerbabuena.ercp.ext.restlet                                 .createDocument.CreateDocumentAction"          caption="Create document"          mode="command"          priority="1"          type="OK">       </command>       <assignedDocuments>          <category id="Workspaces"/>       </assignedDocuments>       <permission           id="ReadWrite">       </permission>    </action> </extension>
  • 12. Extension point: BrowseAction <extension point="BrowseActionPlugin.RestletAction">    <action id="publish.action">       <command id="publish.command"      actionListener="es.yerbabuena.ercp.ext.restlet .publishDocument.PublishDocumentAction"           caption="Publish"           enabled="true"                     mode="command"           priority="5"           type="OK">       </command>       <assignedDocuments>          <document id="Note"/>          <document id="Forum"/>          <document id="PDF"/>       </assignedDocuments>       <permission id="ReadWrite"/>    </action> </extension>
  • 13. Extension point: BrowseAction <extension point="BrowseActionPlugin.RestletAction">    <action id="cut.action">       <command id="cut.command"   actionListener="es.yerbabuena.ercp.ext.restlet .browseActions.CutAction"          caption="Cut"                   mode="command"          priority="1"          type="SELECT">       </command>       <assignedDocuments>          <category              id="ALL">          </category>       </assignedDocuments>       <permission             id="Remove">       </permission>    </action> </extension>
  • 14. Extension point: Menu <extension point="es.yerbabuena.ercp.ui.menu.menus">    <menu id="es.yerbabuena.ercp.menu.FrontMenu"      name="FrontMenu"    type=”ListView”            </menu>    <menu­item id="DocumentManager"         action="es.yerbabuena.ercp.action.DocumentManagerAction"         description="Acceda a gestionar sus documentos"         icon="icons/system­file­manager.gif"         menu="es.yerbabuena.ercp.menu.FrontMenu"         name="%menu.frontmenu.documentmanager"         priority="1">    </menu­item>    <menu­item id="ViewPreferences"         action="es.yerbabuena.ercp.action.ViewPreferences"         description="Configure Yerbabuena eRCP"         icon="icons/preferences­system.gif"         menu="es.yerbabuena.ercp.menu.FrontMenu"         name="%menu.frontmenu.preferences"         priority="5">    </menu­item> </extension>
  • 15. Extension point: Menu-item <extension point="es.yerbabuena.ercp.ui.menu.menus">    <menu­item id="manageusers" action="es.yerbabuena.ercp.ext.restlet .manageUsersAndGroups.ManageUsersAndGroupsAction"   description="Control de permisos de Usuarios y Grupos"        icon="icons/system­users.gif"        menu="es.yerbabuena.ercp.menu.FrontMenu"        name="Manage Users And Groups"        priority="2">    </menu­item> </extension>
  • 16. Thank you Yerbabuena Software www.yerbabuena.es yerbabuena@yerbabuena.es T. 902 995 246