This chapter supply you with the basic knowledge about templates, UI extension, APIs in eXo Content. Through it, you can build your own content. Also, with the step-by-step guides, you can create UI extension, deploy a workflow in eXo Content and do many different actions.

This chapter consists of the main following contents:

Overview

The templates are applied to a node type or a metadata mixin type. There are two types of templates:

From the ECM admin portlet, the Manage Template lists existing node types associated to Dialog and/or View templates. These templates can be attached to permissions (in the usual membership:group form), so that a specific one is displayed according to the rights of the user (very useful in a content validation workflow activity).

Document Type

The checkbox defines if the node type should be considered as the Document type or not. Content Explorer considers such nodes as user content and applies the following behavior:

Templates are written by using Groovy Templates that requires some experiences with JCR API and HTML notions.

Dialogs are Groovy templates that generate forms by mixing static HTML fragments and Groovy calls to the components responsible for building the UI at runtime. The result is a simple but powerful syntax.

These following parameters are common and can be used for all input fields.

Parameter Type Required Description Example
jcrPath String The relative path inside the current node. jcrPath=/node/exo:title
mixintype String with the commas (,) character. The list of mixin types you want to initialize when creating the content.

mixintype=mix:i18n

validate String with the comma (,) character The list of validators you want to apply to the input. Possible values are: name, email, number, empty, null, datetime, length OR validator classes.

validate=empty

validate=empty,name

validate=org.exoplatform.webui.form.validator.StringLengthValidator

editable String The input will be editable only if the value of this parameter is if-null and the value of this input is null or blank. editable=if-null
multiValues Boolean Show a multi-valued component if true and must be used only with corresponding multi-valued properties. The default value of this parameter is false. multiValues=true
visible Boolean The input is visible if this value is true. visible=true

See also:

Note

The mixintype can be used only in the root node field (commonly known as the name field).

Parameter Type Required Description Example
rows Number

The initial text area's number of rows. The value is 10 by default. rows=20
cols Number

The initial text area's number of cols. The value is 30 by default . cols=50

See also: Common parameters

  • Example

Parameter Type Required Description Example
options String with the semicolon (;) character Some options for CKEditor field: toolbar, width and height. options=CompleteWCM;width:'100%';height:'200px';
toolbar String The predefined toolbar for CKEditor. The value can be: Default, Basic, CompleteWCM, BasicWCM, SuperBasicWCM. options=CompleteWCM
width String The width of CKEditor. Its value can be the percent of pixel. options=width:'100%'
height String The height of CKEditor. Its value can be the percent of pixel. options=height:'200px'

See also: Common parameters

  • Example

See also: Common parameters

  • Example

When you create an upload form, you can store an image by two main ways:



<%
    def image = "image";
    // If you're trying to edit the document
    if(uicomponent.isEditing()) { 
        def curNode = uicomponent.getNode();
        // If the image existed
        if (curNode.hasNode("exo:image")) {
            def imageNode = curNode.getNode("exo:image") ;
            // If the image existed and available
            if (imageNode.getProperty("jcr:data").getStream().available() > 0 && (uicomponent.findComponentById(image) == null)) {
                def imgSrc = uicomponent.getImage(curNode, "exo:image");
                def actionLink = uicomponent.event("RemoveData", "/exo:image");
                %>      
                    <div>
                        <img src="$imgSrc" width="100px" height="80px"/>
                        <a href="$actionLink">
                            <img src="/eXoResources/skin/DefaultSkin/background/Blank.gif" alt="" class="ActionIcon Remove16x16Icon"/>
                        </a>
                    </div>
                <%
            } else {
                String[] fieldImage = ["jcrPath=/node/exo:image/jcr:data"] ;
                uicomponent.addUploadField(image, fieldImage) ;                             
            }
        } else {
                String[] fieldImage = ["jcrPath=/node/exo:image/jcr:data"] ;
                uicomponent.addUploadField(image, fieldImage) ;                             
        }
    }  else if(uicomponent.dataRemoved()) {
        String[] fieldImage = ["jcrPath=/node/exo:image/jcr:data"] ;
        uicomponent.addUploadField(image, fieldImage) ;
    } else {
        String[] fieldImage = ["jcrPath=/node/exo:image/jcr:data"] ;
        uicomponent.addUploadField(image, fieldImage) ;
    }
%>

To avoid refreshing the first tab for every action execution, add a new private function to the template with tabs. In the template, you must insert a new piece of code like the following:

Changing in every event of onClick must be done like the following:

Finally, to display the selected tab, simply add it to the style of UITabContent class.

The Content List Template allows you to view the content list with various templates. eXo Platform supports the following content list templates:

Template Description
BigHotNewsTemplateCLV.gtmpl Display contents under one column with a content list. The illustration of each content is displayed above the content.
ContentListViewerDefault.gtmpl Its function is similar to BigHotNewsTemplateCLV.gtmpl. The illustration of each content is bigger.
DocumentsTemplate.gtmpl Display contents under a content list with a NodeType icon or the illustration on the left of the corresponding content.
EventsTemplateCLV.gtmpl Its function is similar to BigHotNewsTemplateCLV.gtmpl, but the illustration of each content is smaller.
OneColumnCLVTemplate.gtmpl Display contents under one column. The illustration of each content is displayed on its left.
TwoColumnsCLVTemplate.gtmpl Display contents under two columns. The illustration of each content is displayed on its left.
UIContentListPresentationBigImage.gtmpl Its function is similar to BigHotNewsTemplateCLV.gtmpl, but the illustration of each content is bigger than the image displayed with ContentListViewerDefault.gtmpl and the text font is different.
UIContentListPresentationDefault.gtmpl Its function is similar to BigHotNewsTemplateCLV.gtmpl, but the illustration of each content is smaller and the text font is different.
UIContentListPresentationSmall.gtmpl Display contents under one column with a content list. The images are displayed on the left of the corresponding content and smaller than the images of the other templates.

The Category Navigation Template displays all contents under the categories.

Template Description
CategoryList.gtmpl Display categories as a navigation bar.
CategoryTree.gtmpl Display categories as a tree.
TagsCloud.gtmpl Display all tags of the contents.

Basically, if you want to add a rich text area to your dialogs, you can use the addRichtextField method. However, in case you want to add the rich text editor manually, you first need to use the addTextAreaField method and some additional Javascripts as shown below:



<%
    String[] fieldDescription = ["jcrPath=/node/exo:description"] ;
    uicomponent.addTextAreaField("description", fieldDescription)
%>
<script>
  var instances = CKEDITOR.instances['description'];
  if (instances) instances.destroy(true);
  CKEDITOR.replace('description', {
    toolbar : 'CompleteWCM',
    uiColor : '#9AB8F3'
  });
</script>

REST-style architectures consist of clients and servers. Clients initiate requests to servers; servers process requests and return appropriate responses. Requests and responses are built around the transfer of "representations" of "resources". A resource can be essentially any coherent and meaningful concept that may be addressed. A representation of a resource is typically a document that captures the current or intended state of a resource.

At any particular time, a client can either be in transition between application states or "at rest". A client in a REST state is able to interact with its users, but creates no load and consumes no per-client storage on the set of servers or on the network.

The client begins sending requests when it is ready to make the transition to a new state. While one or more requests are outstanding, the client is considered to be in transition. The representation of each application state contains links that may be used the next time, the client chooses to initiate a new state transition.

REST is initially described in the context of HTTP, but is not limited to that protocol. RESTful architectures can be based on other Application Layer protocols if they already provide a rich and uniform vocabulary for applications based on the transfer of meaningful representational state. RESTful applications maximize the use of the pre-existing, well-defined interface and other built-in capabilities provided by the chosen network protocol, and minimize the addition of new application-specific features on its top.

Here is the convention you should follow:

Method Definition
GET Get a Resource. Its state should not be modified.
POST Create a Resource (or anything that does not fit elsewhere).
PUT Update a Resource.
DELETE Delete a Resource.

The followings are formats which need to be supported for all your APIs:

  • JSON: This format makes developers easy to parse in a lot of languages, such as JavaScript, Python or Ruby.

  • XML: Most of Java developers like using this format.

  • ATOM: This is a standard format which can be used by many applications.

You can start creating GetEditedDocumentRESTService that implements from the ResourceContainer interface as follows:

Parameters Definition
@Path("/presentation/document/edit/") Specify the URI path which a resource or class method will serve requests for.
@PathParam("repository") Bind the value repository of a URI parameter or a path segment containing the template parameter to a resource method parameter, resource class field, or resource class bean property.
@QueryParam("showItems") Bind the value showItems of a HTTP query parameter to a resource method parameter, resource class field, or resource class bean property.

This part describes how to create a sample UI extension.

To add your own UIAction, do as follows:

1. Create a pom.xml file with the following content:




<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.exoplatform.ecms</groupId>
        <artifactId>exo-ecms-examples-uiextension-framework</artifactId>
        <version>2.2.0-SNAPSHOT</version>
    </parent>
    <artifactId>exo-ecms-examples-uiextension-framework-manage-wcm-cache</artifactId>
    <name>eXo WCM Cache Examples</name>
    <description>eXo WCM Cache Examples</description>
    <dependencies>
        <dependency>
            <groupId>org.exoplatform.kernel</groupId>
            <artifactId>exo.kernel.container</artifactId>
            <version>2.3.1-GA</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.exoplatform.commons</groupId>
            <artifactId>exo.platform.commons.webui.ext</artifactId>
            <version>1.1.2</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.exoplatform.ecms</groupId>
            <artifactId>exo-ecms-core-webui</artifactId>
            <version>2.3.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.exoplatform.ecms</groupId>
            <artifactId>exo-ecms-core-webui-administration</artifactId>
            <version>2.3.1</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
    <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                    <include>**/*.jar</include>
                    <include>**/*.pom</include>
                    <include>**/*.conf</include>
                    <include>**/*.gtmpl</include>
                    <include>**/*.gif</include>
                    <include>**/*.jpg</include>
                    <include>**/*.png</include>
                </includes>
            </resource>
        </resources>
    </build>
</project>

2. Create the src/main/java directory and start launching mvn eclipse:eclipse. Then, you can launch your eclipse and import this new project.

3. Create a new class called org.exoplatform.wcm.component.cache.UIWCMCacheComponent that extends org.exoplatform.ecm.webui.component.admin.manager.UIAbstractManagerComponent.

With the Webui framework, you will be notified if any given action is triggered. You just need to call your own action listener ($ACTIONNAME) ActionListener. For example, to create your own action listener for CacheView, do as follows:

1. Call CacheViewActionListener.

2. Add a static inner class called CacheViewActionListener that extends org.exoplatform.ecm.webui.component.admin.listener.UIECMAdminControlPanelActionListener.

You will see the expected code below:

3. Create the src/main/java directory and launch mvn eclipse:eclipse. You can then launch your eclipse and import this new project.

4. Create a new configuration file called conf/portal/configuration.xml to register your action (see Register your UI Action) with the org.exoplatform.webui.ext.UIExtensionManager service.

To register your UI Action, do as follows:

1. Create the code:




<configuration xmlns="http://www.exoplaform.org/xml/ns/kernel_1_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_1.xsd http://www.exoplaform.org/xml/ns/kernel_1_1.xsd">

    <external-component-plugins>
        <target-component>org.exoplatform.webui.ext.UIExtensionManager</target-component>
        <component-plugin>
            <name>Add.Actions</name>
            <set-method>registerUIExtensionPlugin</set-method>
            <type>org.exoplatform.webui.ext.UIExtensionPlugin</type>
            <init-params>
                <object-param>
                    <name>CacheView</name>
                    <object type="org.exoplatform.webui.ext.UIExtension">
                        <field name="type">
                            <string>org.exoplatform.ecm.dms.UIECMAdminControlPanel</string>
                        </field>
                        <field name="name">
                            <string>CacheView</string>
                        </field>
                        <field name="category">
                            <string>GlobalAdministration</string>
                        </field>
                        <field name="component">
                            <string>org.exoplatform.wcm.component.cache.UIWCMCacheComponent</string>
                        </field>
                    </object>
                </object-param>
                <object-param>
                    <name>UIWCMCacheManager</name>
                    <object type="org.exoplatform.webui.ext.UIExtension">
                        <field name="type">
                            <string>org.exoplatform.ecm.dms.UIECMAdminControlPanel</string>
                        </field>
                        <field name="name">
                            <string>UIWCMCacheManager</string>
                        </field>
                        <field name="category">
                            <string>GlobalAdministration</string>
                        </field>
                        <field name="component">
                            <string>org.exoplatform.wcm.manager.cache.UIWCMCacheManagerComponent</string>
                        </field>
                        <field name="extendedFilters">
                            <collection type="java.util.ArrayList">
                                <value>
                                    <object type="org.exoplatform.webui.ext.filter.impl.UserACLFilter">
                                        <field name="permissions">
                                            <collection item-type="java.lang.String" type="java.util.ArrayList">
                                                <value>
                                                    <string>*:/platform/administrators</string>
                                                </value>
                                            </collection>
                                        </field>
                                    </object>
                                </value>
                            </collection>
                        </field>
                    </object>
                </object-param>
            </init-params>
        </component-plugin>
    </external-component-plugins>
</configuration>

2. Launch mvn clean install.

3. Copy the resource bundle.

Create ExamplePortlet_en.xml with the following content and add it to the src/main/resource package:




<bundle>
    <!-- ################################################################################ # org.exoplatform.wcm.component.cache.UIWCMCacheForm
  # ################################################################################ -->

    <UIWCMCacheForm>
        <action>
            <Cancel>Cancel</Cancel>
            <Save>Save</Save>
            <Clear>Clear the cache</Clear>
        </action>
        <label>
            <maxsize>Max size :</maxsize>
            <livetime>Live time in sec :</livetime>
            <isCacheEnable>Cache enabled(should always be on production enviroment)</isCacheEnable>
            <hit>Hit count :</hit>
            <currentSize>Current size</currentSize>
            <miss>Miss count :</miss>
        </label>
    </UIWCMCacheForm>

    <!-- ################################################################################ # org.exoplatform.wcm.manager.cache.UIWCMCacheManagerForm
  # ################################################################################ -->

    <UIWCMCacheManagerForm>
        <action>
            <Cancel>Cancel</Cancel>
            <Save>Save</Save>
            <Clear>Clear the cache</Clear>
        </action>
        <label>
            <cacheModify>Cache to modify :</cacheModify>
            <maxsize>Max size :</maxsize>
            <livetime>Live time in sec :</livetime>
            <isCacheEnable>Cache enabled(should always be on production enviroment)</isCacheEnable>
            <hit>Hit count :</hit>
            <currentSize>Current size</currentSize>
            <miss>Miss count :</miss>
        </label>
    </UIWCMCacheManagerForm>

    <UIECMAdminControlPanel>
        <tab>
            <label>
                <GlobalAdministration>Global Administration</GlobalAdministration>
            </label>
        </tab>
        <label>
            <UIWCMCache>WCM Cache</UIWCMCache>
            <UIWCMCachePanel>WCM Cache Administration</UIWCMCachePanel>
            <UIWCMCacheManager>Managing Caches</UIWCMCacheManager>
            <UIWCMCacheManagerPanel>WCM Cache Management</UIWCMCacheManagerPanel>
        </label>
    </UIECMAdminControlPanel>
</bundle>

You must add the following content to configuration.xml to register the resource bundle.



<external-component-plugins>
    <!-- The full qualified name of the ResourceBundleService -->
    <target-component>org.exoplatform.services.resources.ResourceBundleService</target-component>
    <component-plugin>
        <!-- The name of the plugin -->
        <name>ResourceBundle Plugin</name>
        <!-- The name of the method to call on the ResourceBundleService in order to register the ResourceBundles -->
        <set-method>addResourceBundle</set-method>
        <!-- The full qualified name of the BaseResourceBundlePlugin -->
        <type>org.exoplatform.services.resources.impl.BaseResourceBundlePlugin</type>
        <init-params>
            <values-param>
                <name>init.resources</name>
                <description>Store the following resources into the db for the first launch</description>
                <value>locale.portlet.cache.ExamplePortlet</value>
            </values-param>
            <values-param>
                <name>portal.resource.names</name>
                <description>The properties files of the portal , those file will be merged
                    into one ResoruceBundle properties
                </description>
                <value>locale.portlet.cache.ExamplePortlet</value>
            </values-param>
        </init-params>
    </component-plugin>
</external-component-plugins>

Publication add-ons for eXo Content.

The Publication Manager manages lifecycles and contexts in the eXo Content platform. It allows to manages different lifecycles based on different publication plugin in the platform.

In which:

A lifecycle is defined by a simple vertical workflow with steps (states) and profiles (membership). Each lifecycle is related to a Publication plugin (compliant with the JBPM or Bonita business processes).

For example: Two lifecycles with/without states



<external-component-plugins>
    <target-component>org.exoplatform.services.wcm.publication.PublicationManager</target-component>
    <component-plugin>
        <name>AddLifecycle</name>
        <set-method>addLifecycle</set-method>
        <type>org.exoplatform.services.wcm.publication.lifecycles.StatesLifecyclePlugin</type>
        <init-params>
            <object-param>
                <name>lifecyles</name>
                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig">
                    <field name="lifecycles">
                        <collection type="java.util.ArrayList">
                            <value>
                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$Lifecycle">
                                    <field name="name">
                                        <string>lifecycle1</string>
                                    </field>
                                    <field name="publicationPlugin">
                                        <string>States and versions based publication</string>
                                    </field>
                                </object>
                            </value>
                            <value>
                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$Lifecycle">
                                    <field name="name">
                                        <string>lifecycle2</string>
                                    </field>
                                    <field name="publicationPlugin">
                                        <string>Authoring publication</string>
                                    </field>
                                    <field name="states">
                                        <collection type="java.util.ArrayList">
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>draft</string>
                                                    </field>
                                                    <field name="memberships">
                                                        <collection type="java.util.ArrayList">
                                                            <value>
                                                                <string>author:/CA/communicationDG</string>
                                                            </value>
                                                            <value>
                                                                <string>author:/CA/alerteSanitaire</string>
                                                            </value>
                                                            <value>
                                                                <string>author:/CA/alerteInformatique</string>
                                                            </value>
                                                            <value>
                                                                <string>author:/CA/informations</string>
                                                            </value>
                                                        </collection>
                                                    </field>
                                                </object>
                                            </value>
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>pending</string>
                                                    </field>
                                                    <field name="membership">
                                                        <string>author:/platform/web-contributors</string>
                                                    </field>
                                                </object>
                                            </value>
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>approved</string>
                                                    </field>
                                                    <field name="membership">
                                                        <string>manager:/platform/web-contributors</string>
                                                    </field>
                                                </object>
                                            </value>
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>staged</string>
                                                    </field>
                                                    <field name="membership">
                                                        <string>publisher:/platform/web-contributors</string>
                                                    </field>
                                                </object>
                                            </value>
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>published</string>
                                                    </field>
                                                    <field name="membership">
                                                        <string>automatic</string>
                                                    </field>
                                                </object>
                                            </value>
                                        </collection>
                                    </field>
                                </object>
                            </value>
                            <value>
                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$Lifecycle">
                                    <field name="name">
                                        <string>lifecycle3</string>
                                    </field>
                                    <field name="publicationPlugin">
                                        <string>Authoring publication</string>
                                    </field>
                                    <field name="states">
                                        <collection type="java.util.ArrayList">
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>draft</string>
                                                    </field>
                                                    <field name="membership">
                                                        <string>author:/platform/web-contributors</string>
                                                    </field>
                                                </object>
                                            </value>
                                            <value>
                                                <object type="org.exoplatform.services.wcm.publication.lifecycles.impl.LifecyclesConfig$State">
                                                    <field name="state">
                                                        <string>published</string>
                                                    </field>
                                                    <field name="memberships">
                                                        <collection type="java.util.ArrayList">
                                                            <value>
                                                                <string>publisher:/CA/communicationDG</string>
                                                            </value>
                                                            <value>
                                                                <string>publisher:/CA/alerteSanitaire</string>
                                                            </value>
                                                            <value>
                                                                <string>publisher:/CA/alerteInformatique</string>
                                                            </value>
                                                            <value>
                                                                <string>publisher:/CA/informations</string>
                                                            </value>
                                                        </collection>
                                                    </field>
                                                </object>
                                            </value>
                                        </collection>
                                    </field>
                                </object>
                            </value>
                        </collection>
                    </field>
                </object>
            </object-param>
        </init-params>
    </component-plugin>
</external-component-plugins>

In the last example, there are three lifecycles:

  • Lifecycle 1: Based on StatesAndVersionsPublicationPlugin .

    • This allows to be backward compliant with older eXo Content releases. If all your site contents are using an existing plugin, you can create a lifecycle for it and it will work.

    • For new instances, you should use the new plugin with dynamic states capabilities.

  • Lifecycle 2: Based on AuthoringPublicationPlugin .

    • Visibility: Define only the "visible" steps. In this example, there is no step for 'enrolled'. Even if this step exists, it will not be displayed in the UI.

    • Automatic: Set a step as "automatic". In this mode, the step will be visible in the UI but it will be managed by the system (e.g. a cron job).

  • Lifecycle 3: Simulates the StatesAndVersionsPublicationPlugin plugin. Note that this simple lifecycle will work in a single server configuration.

A context is defined by simple rules. In eXo Content, you can select to enroll the content in a specific lifecycle (for example, publication plugin) based on context parameters. There are three parameters used to define contexts:

From these parameters, you can easily connect and define contexts based on:

Because each site has a content storage (categories + physical storage), you can select the right lifecycle for the right storage/site. To avoid conflicts on contexts, you can set a priority (the less is the best).

For example, Different Contexts:



<external-component-plugins>
    <target-component>org.exoplatform.services.wcm.publication.PublicationManager</target-component>
    <component-plugin>
        <name>AddContext</name>
        <set-method>addContext</set-method>
        <type>org.exoplatform.services.wcm.publication.context.ContextPlugin</type>
        <init-params>
            <object-param>
                <name>contexts</name>
                <object type="org.exoplatform.services.wcm.publication.context.impl.ContextConfig">
                    <field name="contexts">
                        <collection type="java.util.ArrayList">
                            <value>
                                <object type="org.exoplatform.services.wcm.publication.context.impl.ContextConfig$Context">
                                    <field name="name">
                                        <string>contextdefault</string>
                                    </field>
                                    <field name="priority">
                                        <string>200</string>
                                    </field>
                                    <field name="lifecycle">
                                        <string>lifecycle1</string>
                                    </field>
                                </object>
                                <object type="org.exoplatform.services.wcm.publication.context.impl.ContextConfig$Context">
                                    <field name="name">
                                        <string>context1</string>
                                    </field>
                                    <field name="priority">
                                        <string>100</string>
                                    </field>
                                    <field name="lifecycle">
                                        <string>lifecycle1</string>
                                    </field>
                                    <field name="membership">
                                        <string>*:/platform/web-contributors</string>
                                    </field>
                                    <field name="site">
                                        <string>acme</string>
                                    </field>
                                    <field name="path">
                                        <string>repository:collaboration:/sites content/live/acme/categories</string>
                                    </field>
                                </object>
                                <object type="org.exoplatform.services.wcm.publication.context.impl.ContextConfig$Context">
                                    <field name="name">
                                        <string>context2</string>
                                    </field>
                                    <field name="priority">
                                        <string>100</string>
                                    </field>
                                    <field name="lifecycle">
                                        <string>lifecycle1</string>
                                    </field>
                                    <field name="site">
                                        <string>classic</string>
                                    </field>
                                </object>
                                <object type="org.exoplatform.services.wcm.publication.context.impl.ContextConfig$Context">
                                    <field name="name">
                                        <string>context3</string>
                                    </field>
                                    <field name="priority">
                                        <string>80</string>
                                    </field>
                                    <field name="lifecycle">
                                        <string>lifecycle3</string>
                                    </field>
                                    <field name="membership">
                                        <string>manager:/company/finances</string>
                                    </field>
                                    <field name="path">
                                        <string>repository:collaboration:/documents/company/finances</string>
                                    </field>
                                </object>
                                <object type="org.exoplatform.services.wcm.publication.context.impl.ContextConfig$Context">
                                    <field name="name">
                                        <string>context4</string>
                                    </field>
                                    <field name="priority">
                                        <string>50</string>
                                    </field>
                                    <field name="lifecycle">
                                        <string>lifecycle4</string>
                                    </field>
                                    <field name="memberships">
                                        <collection type="java.util.ArrayList">
                                            <value>
                                                <string>manager:/CA/communicationDG</string>
                                            </value>
                                            <value>
                                                <string>manager:/CA/alerteSanitaire</string>
                                            </value>
                                            <value>
                                                <string>manager:/CA/alerteInformatique</string>
                                            </value>
                                            <value>
                                                <string>manager:/CA/informations</string>
                                            </value>
                                        </collection>
                                    </field>
                                    <field name="path">
                                        <string>repository:collaboration:/documents/company/finances</string>
                                    </field>
                                    <field name="nodetype">
                                        <string>exo:article</string>
                                    </field>
                                </object>
                            </value>
                        </collection>
                    </field>
                </object>
            </object-param>
        </init-params>
    </component-plugin>
</external-component-plugins>

The logic is very simple. When creating a content, it should be attached a lifecycle with the lifecyle priority:

The logic is very simple. When you create a content, go lifecycle by lifecycle starting with the better priority:

When adding the content in a lifecycle, set the publication:lifecycle property with the corresponding lifecycle.

Each time you change from one state to another, set the user who changed the state in publication:lastUser.

Querying based on publication status:

By adding this mixin to contents, you can access contents by simple queries based on the current user profile. For example:

Service name Service URL Location Description
ThumbnailRESTService {portalname}/{restcontextname}/thumbnailImage/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-services

Return a responding data as a thumbnail image.
Name Service URL endpoint Parameters Values Description
getThumbnailImage {portalname}/{restcontextname}/thumbnailImage/medium/{repoName}/{workspaceName}/{nodePath}/

repoName

workspaceName

nodePath

String

String

String

Return an image with the medium size (64x64).
getLargeImage {portalname}/{restcontextname}/thumbnailImage/large/{repoName}/{workspaceName}/{nodePath}/

repoName

workspaceName

nodePath

String

String

String

Return an image with the large size (300x300).
getSmallImage {portalname}/{restcontextname}/thumbnailImage/small/{repoName}/{workspaceName}/{nodePath}/

repoName

workspaceName

nodePath

String

String

String

Return an image with the small size (32x32).
getCustomImage {portalname}/{restcontextname}/thumbnailImage/custom/{size}/{repoName}/{workspaceName}/{nodePath}/

size

repoName

workspaceName

nodePath

String

String

String

String

Return an image with the custom size.
getOriginImage {portalname}/{restcontextname}/thumbnailImage/origin/{repoName}/{workspaceName}/{nodePath}/

repoName

workspaceName

nodePath

String

String

String

Return an image with the original size.
Service name Service URL Location Description
RssConnector {portalname}/{restcontextname}/feed/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Generate an RSS feed.
Name Service URL endpoint Parameters Values Description
generate {portalname}/{restcontextname}/feed/rss/

repository

workspace

server

siteName

title

desc

folderPath

orderBy

orderType

lang

detailPage

detailParam

recursive

String

String

String

String

String

String

String

String

String

String

String

String

String

Generate an RSS feed.
Service name Service URL Location Description
FCKCoreRESTConnector {portalname}/{restcontextname}//fckconnector/jcr/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Get a list of files and folders, and create a folder and upload files.
Name Service URL endpoint Parameters Values Description
getFoldersAndFiles {portalname}/{restcontextname}/fckconnector/jcr/getFoldersAndFiles/{repositoryName}/{workspaceName}/{currentFolder}/{command}/{type}/

repositoryName

workspaceName

currentFolder

command

type

String

String

String

String

String

Return the folders and the files in the current folder.
createFolder {portalname}/{restcontextname}/fckconnector/jcr/createFolder/{repositoryName}/{workspaceName}/{currentFolder}/{newFolderName}/{language}/

repositoryName

workspaceName

currentFolder

newFolderName

language

String

String

String

String

String

Create a folder under the current folder.
uploadFile {portalname}/{restcontextname}/fckconnector/jcr/uploadFile/upload/servletRequestHttpServletRequestUploads a file with the HttpServletRequest.
processUpload {portalname}/{restcontextname}/fckconnector/jcr/uploadFile/control/{repositoryName}/{workspaceName}/{currentFolder}/{action}/{language}/{fileName}/{uploadId}/

repositoryName

workspaceName

currentFolder

action

language

fileName

uploadId

String

String

String

String

String

String

String

Control the process of uploading a file, such as aborting, deleting or progressing the file.
Service name Service URL Location Description
ResourceBundleConnector {portalname}/{restcontextname}/bundle/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Get the bundle basing on the key and the locale.
Name Service URL endpoint Parameters Values Description
getBundle {portalname}/{restcontextname}/bundle/getBundle/{key}/{locale}/

key

locale

String

String

Get the bundle basing on the key and the locale.
Service name Service URL Location Description
VoteConnector {portalname}/{restcontextname}/contents/vote/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Return and set a vote value of a given node in the sent parameter.
Name Service URL endpoint Parameters Values Description
postVote {portalname}/{restcontextname}/contents/vote/postVote/{repositoryName}/{workspaceName}/{jcrPath}/{vote}/{lang}/

repositoryName

workspaceName

jcrPath

vote

lang

String

String

String

String

String

String

Set a vote value for a given content.
getVote {portalname}/{restcontextname}/contents/vote/getVote/{repositoryName}/{workspaceName}/{jcrPath}/

repositoryName

workspaceName

jcrPath

String

String

String

Return a vote value for a given content.
Service name Service URL Location Description
DriverConnector {portalname}/{restcontextname}/wcmDriver/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Return a drive list, a folder list and a document list in a specified location for a given user. Also, it processes the file uploading action.
Name Service URL endpoint Parameters Values Description
getDrivers {portalname}/{restcontextname}/wcmDriver/getDrivers/langStringReturn a list of drives for the current user.
getFoldersAndFiles {portalname}/{restcontextname}/wcmDriver/getFoldersAndFiles/

driverName

currentFolder

currentPortal

repositoryName

workspaceName

filterBy

String

String

String

String

String

String

Return all folders and files in a given location.
uploadFile {portalname}/{restcontextname}/wcmDriver/uploadFile/upload/ uploadIdStringUploads a file.
processUpload {portalname}/{restcontextname}/wcmDriver/uploadFile/control/

repositoryName

workspaceName

driverName

currentFolder

currentPortal

userId

jcrPath

action

language

fileName

uploadId

String

String

String

String

String

String

String

String

String

String

String

Control the process of uploading a file, such as aborting, deleting or processing the file.
Service name Service URL Location Description
GadgetConnector {portalname}/{restcontextname}/wcmGadget/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Instantiate a new gadget connector.
Name Service URL endpoint Parameters Values Description
getFoldersAndFiles {portalname}/{restcontextname}/wcmGadget/getFoldersAndFiles/{currentFolder}/{lang}/{host}/

currentFolder

lang

host

String

String

String

Get the folders and files.
Service name Service URL Location Description
PortalLinkConnector {portalname}/{restcontextname}/portalLinks/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-connector

Return a page URI for a given location.
Name Service URL endpoint Parameters Values Description
getPageURI {portalname}/{restcontextname}/portalLinks/getFoldersAndFiles/

currentFolder

String

String

String

Get the page URI.
Service name Service URL Location Description
GetEditedDocumentRESTService {portalname}/{restcontextname}/presentation/document/edit/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-publication

Return the latest edited documents.
Name Service URL endpoint Parameters Values Description
getLastEditedDoc {portalname}/{restcontextname}/presentation/document/edit/{repository}/repositoryStringReturn the latest edited documents.
Service name Service URL Location Description
PublicationGetDocumentRESTService {portalname}/{restcontextname}/publication/presentation/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-publication

Return a list of published documents.
Name Service URL endpoint Parameters Values Description
getPublishDocument {portalname}/{restcontextname}/publication/presentation/{repository}/{workspace}/{state}/

repository

workspace

state

showItems

String

String

String

String

Return a list of published document by the default plugin.
getPublishedListDocument {portalname}/{restcontextname}/publication/presentation/{repository}/{workspace}/{publicationPluginName}/{state}/

repository

workspace

publicationPluginName

state

showItems

String

String

String

String

String

String

Return a list of published documents by a specific plugin.
Service name Service URL Location Description
FavoriteRESTService {portalname}/{restcontextname}/favorite/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-services

Return a list of favourite documents of a given user.
Name Service URL endpoint Parameters Values Description
getFavoriteByUser {portalname}/{restcontextname}/favorite/all/{repoName}/{workspaceName}/{userName}

repoName

workspaceName

userName

showItems

String

String

String

String

Return a list of favourite documents of a given user.
Service name Service URL Location Description
RESTImagesRendererService {portalname}/{restcontextname}/images/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-core-services

Get the image binary data of a given image node.
Name Service URL endpoint Parameters Values Description
serveImage {portalname}/{restcontextname}/images/{repositoryName}/{workspaceName}/{nodeIdentifier}/

repositoryName

workspaceName

nodeIdentifier

param

String

String

String

String

Get the image binary data of a given image node.
Service name Service URL Location Description
LifecycleConnector {portalname}/{restcontextname}/authoring/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-ext-authoring-services

Return a list of contents in a given state range of the publication lifecycle.
Name Service URL endpoint Parameters Values Description
byState {portalname}/{restcontextname}/authoring/bystate/

fromstate

user

lang

workspace

json

String

String

String

String

String

Return a list of contents from the given state to the last state.
toState {portalname}/{restcontextname}/authoring/toState/

fromstate

tostate

user

lang

workspace

json

String

String

String

String

String

String

Return a list of contents from the beginning state to the last state.
byDate {portalname}/{restcontextname}/authoring/byDate/

fromstate

date

lang

workspace

json

String

String

String

String

String

String

Return a list of contents from the given beginning state and published before the given date.
Service name Service URL Location Description
CopyContentFile {portalname}/{restcontextname}/copyfile/

Maven groupId: org.exoplatform.ecms

ArtifactId: exo-ecms-ext-authoring-services

Copy a file.
Name Service URL endpoint Parameters Values Description
copyFile {portalname}/{restcontextname}/copyfile/copy/param - the file informationStringCopy a file.
Service name Service URL Location Description
PDFViewerRESTService {portalname}/{restcontextname}/pdfviewer//{repoName}/{workspaceName}/{pageNumber}/{rotation}/{scale}/{uuid}/

Maven groupId: org.exoplatform.ecms

ArtifactId: ecms-core-viewer

Return the pdf content to display on the web page
Name Service URL endpoint Parameters Values Description
getCoverImage {portalname}/{restcontextname}/pdfviewer//{repoName}/{workspaceName}/{pageNumber}/{rotation}/{scale}/{uuid}/

repoName

workspaceName

uuid

pageNumber

rotation

scale

String

String

String

String

String

Return a thumbnail image for a pdf document.

Taxonomy service is used to work with taxonomies. In this service, there are many functions which enable you to add, find, or delete taxonomies from a node.

Method Param Return Description
getTaxonomyTree(String repository, String taxonomyName, boolean system) throws ReposioryException;

repository: The name of repository.

taxonomyName: The name of the taxonomy.

system: Indicates whether the nodes must be retrieved using a session system or user session.

Node Return the root node of the given taxonomy tree.
getTaxonomyTree(String repository, String taxonomyName) throws RepositoryException;

repository: The name of repository.

taxonomyName: The name of the taxonomy.

Node Return the root node of the given taxonomy tree with the user session.
getAllTaxonomyTrees(String repository, boolean system) throws RepositoryException;

repository: The name of repository.

system: Indicates whether the nodes must be retrieved using a session system or user session.

List<Node> Return the list of all the root nodes of the taxonomy tree available.
getAllTaxonomyTrees(String repository) throws RepositoryException; repository: The name of repository. List<Node> Return the list of all the root nodes of the taxonomy tree available with the user session.
hasTaxonomyTree(String repository, String taxonomyName) throws RepositoryException;

repository: The name of repository.

taxonomyName: The name of the taxonomy.

boolean Check if a taxonomy tree with the given name has already been defined.
addTaxonomyTree(Node taxonomyTree) throws RepositoryException, TaxonomyAlreadyExistsException; taxonomyTree: The taxonomy tree to define. void Define a node as a new taxonomy tree.
updateTaxonomyTree(String taxonomyName, Node taxonomyTree) throws RepositoryException;

taxonomyName: The name of the taxonomy to update.

taxonomyTree: The taxonomy tree to define.

void Re-define a node as a taxonomy tree.
removeTaxonomyTree(String taxonomyName) throws RepositoryException taxonomyName: The name of the taxonomy to remove. void Remove the taxonomy tree definition.
addTaxonomyNode(String repository, String workspace, String parentPath, String taxoNodeName, String creator) throws RepositoryException, TaxonomyNodeAlreadyExistsException;

repository: The name of the repository. workspace: The name of the workspace

parentPath: The place where the taxonomy node will be added.

taxoNodeName: The name of taxonomy node.

creator: The name of the user creating this node.

void Add a new taxonomy node at the given location.
removeTaxonomyNode(String repository, String workspace, String absPath) throws RepositoryException;

repository: The name of the repository

workspace: The name of the workspace.

absPath: The absolute path of the taxonomy node to remove.

void Remove the taxonomy node located at the given absolute path.
moveTaxonomyNode(String repository, String workspace, String srcPath, String destPath, String type) throws RepositoryException;

repository: The name of the repository.

workspace: The name of the workspace.

srcPath: The source path of this taxonomy.

destPath: The destination path of the taxonomy.

type: If type is equal to cut, the process will be cut. If type is equal to copy, the process will be copied.

void Copy or cut the taxonomy node from the source path to the destination path. The parameter type indicates if the node must be cut or copied.
hasCategories(Node node, String taxonomyName) throws RepositoryException;

node: The node to check.

taxonomyName: The name of the taxonomy.

boolean Return true if the given node has categories in the given taxonomy.
hasCategories((Node node, String taxonomyName, boolean system) throws RepositoryException;

node: The node to check.

taxonomyName: The name of the taxonomy.

system: Check system provider or not.

boolean Return true if the given node has categories in the given taxonomy.
getCategories (Node node, String taxonomyName) throws RepositoryException;

node: The node for which we seek the categories.

taxonomyName: The name of the taxonomy.

List<Node> Return all the paths of the categories (relative to the root node of the given taxonomy) which have been associated to the given node for the given taxonomy.
getCategories(Node node, String taxonomyName, boolean system) throws RepositoryException;

node: The node for which we seek the categories.

taxonomyName: The name of the taxonomy.

system: Check system provider or not.

List<Node> Return all the paths of the categories(relative to the root node of the given taxonomy) which have been associated to the given node for the given taxonomy.
getAllCategories(Node node) throws RepositoryException;

node: The node for which we seek the categories

List<Node> Return all the paths of the categories which have been associated to the given node.
getAllCategories(Node node, boolean system) throws RepositoryException;

node: The node for which we seek the categories

system: Check system provider or not.

List<Node> Return all the paths of the categories which have been associated to the given node.
removeCategory(Node node, String taxonomyName, String categoryPath) throws RepositoryException;

node: The node from which the category is removed.

taxonomyName: The name of the taxonomy.

categoryPath: The path of the category relative to the root node of the given taxonomy

void Remove a category to the given node.
removeCategory(Node node, String taxonomyName, String categoryPath, boolean system) throws RepositoryException;

node: The node from which the category is removed.

taxonomyName: The name of the taxonomy.

categoryPath: The path of the category relative to the root node of the given taxonomy.

system: Check system provider or not.

void Remove a category to the given node.
addCategories(Node node, String taxonomyName, String[] categoryPaths) throws RepositoryException;

node: The node to which we add the categories.

taxonomyName: The name of the taxonomy.

categoryPaths: An array of category paths relative to the given taxonomy.

void Add several categories to the given node.
addCategories(Node node, String taxonomyName, String[] categoryPaths, boolean system) throws RepositoryException;

node: The node to which we add the categories.

taxonomyName: The name of the taxonomy.

categoryPaths: An array of category paths relative to the given taxonomy.

system: Check system provider or not.

void Add several categories to the given node.
addCategory(Node node, String taxonomyName, String categoryPath) throws RepositoryException;

node: The node to which we add the category.

taxonomyName: The name of the taxonomy.

categoryPath: The path of the category relative to the given taxonomy.

void Add a new category path to the given node.
addCategory(Node node, String taxonomyName, String categoryPath, boolean system) throws RepositoryException;

node: The node to which we add the category.

taxonomyName: The name of the taxonomy.

categoryPath: The path of the category relative to the given taxonomy.

system: Check system provider or not.

void Add a new category path to the given node.
getTaxonomyTreeDefaultUserPermission(); N/AMap<String, String[]> Get the default permission for the user in taxonomy tree.
addTaxonomyPlugin(ComponentPlugin plugin); plugin: The plugin to add. voidAdd a new taxonomy plugin to the service.
init(String repository) throws Exception; repository: The name of repository. void Initialize all taxonomy plugins that have been already configured in .xml files.
getCategoryNameLength(); N/A String Get the limited length of the category name.

Supply API to work with the linked node or the link included in a node.

Package org.exoplatform.services.cms.link.LinkManager

Method Param Return Description
createLink(Node parent, String linkType, Node target)throws RepositoryException;

parent: The parent node of the link.

linkType: The primary node type of the link must be a sub-type of exo:symlink, the default value is "exo:symlink"

target: The target of the link.

Node Create a new link that is added to the parent node and return the link.
createLink(Node parent, Node target)throws RepositoryException;

parent: The parent node of the link to create.

target: The target of the link.

Node Create a new node of type exo:symlink, then add it to the parent node and return the link node.
createLink(Node parent, String linkType, Node target, String linkName) throws RepositoryException;

parent: The parent node of the link.

inkType: The primary node type of the link must be a sub-type of exo:symlink, the default value is exo:symlink.

target: The target of the link.

linkName: The name of the link.

Node Create a new link that is added to the parent node and return the link.
updateLink(Node link, Node target)throws RepositoryException;

link: The link node to update.

target: The new target of the link.

Node Update the target node of the given link.
getTarget(Node link, boolean system) throws ItemNotFoundException, RepositoryException;

link: The node of type exo:symlink.

system: Indicate whether the target node must be retrieved using a session system or user session in case we cannot use the same session as the node link because the target and the link are not in the same workspace.

Node Get the target node of the given link.
getTarget(Node link)throws ItemNotFoundException, RepositoryException; link: The node of type exo:symlink. Node Get the target node of the given link using the user.
isTargetReachable(Node link) throws RepositoryException; link: The node of type exo:symlink. boolean Check if the target node of the given link can be reached using the user session.
isTargetReachable(Node link, boolean system)throws RepositoryException;

link: The node of type exo:symlink.

system

boolean Check if the target node of the given link can be reached using the user session.
isLink(Item item) throws RepositoryException; item: The item to test. boolean Indicate whether the given item is a link. @return <code>true</code>: if the node is a link, <code>false</code> otherwise.
getTargetPrimaryNodeType(Node link)throws RepositoryException; link: The node of type exo:symlink. String Return the primary node type of the target.
getAllLinks(Node targetNode, String linkType, String repoName)throws Exception

targetNode: The target node to get links.

linkType: The type of link to get.

repoName: The name of the repository.

List<Node> - the list of link of the target node with given type. Return all links of the given node.

PublicationService is to manage the publication.

Method Param Return Description
addLifecycle(ComponentPlugin plugin) N/A void Add plugins context for the publication service.
getLifecycle(String name) name: The name of the wanted lifecycle. Lifecycle Get a specific lifecycle with the given name.
getLifecycles() N/A List<Lifecycle> Get all the lifecycles which were added to service instances.
getContext(String name) name Context Get a specific context with the given names.
getContexts() N/A List<Context> Get all the contexts which were added to service instances.
getContents(String fromstate, String tostate, String date, String user, String lang , String workspace) throws Exception;

fromstate/tostate: The current range state of node.

user: The last user of node.

lang: The node's language.

workspace: The Workspace of the node's location.

List<Node> Get all the nodes.
getLifecyclesFromUser(String remoteUser, String state);

remoteUser: The current user of publication service.

state: The current state of the node.

List<Lifecycle> Get all the Lifecycle of a specific user.

This class is used to get contents inside the WCM product. You should not access contents directly from the JCR on the front side.

In general, this service stands between publication and cache.

Package org.exoplatform.services.wcm.publication.WCMComposer

Method Param Return Description
getContent(String repository, String workspace, String nodeIdentifier, HashMap<String, String> filters, SessionProvider sessionProvider)throws Exception;

repository

workspace

nodeIdentifier

filters

sessionProvider: The session provider.

Node Return contents at the specified path based on filters.
getContents(String repository, String workspace, String path, HashMap<String, String> filters, SessionProvider sessionProvider)throws Exception;

repository

workspace

path

filters

sessionProvider: The session provider.

List<Node> Return contents at the specified path based on filters.
updateContent(String repository, String workspace, String nodeIdentifier, HashMap<String, String> filters)throws Exception;

epository

workspace

path

filters

boolean Update content.
getAllowedStatesString mode)throws Exception; mode List<String> Return allowed states for a specified mode.
cleanTemplates()throws Exception;N/A void Initialize the template hashmap.
isCached()throws Exception;N/A boolean Check isCache or not.
updateTemplatesSQLFilter()throws Exception; N/AString Update all document nodetypes and write a query cause. It returns a part of the query that allows to search all document nodes and taxonomy links. Return null if there is any exception.

Package org.exoplatform.services.cms.folksonomy.NewFolksonomyService;

Method Return Prototype Description
addPrivateTag(String[] tagsName, Node documentNode, String repository, String workspace, String userName) throws Exception ;

tagNames: The array of tag name as the children of tree.

documentNode: Tag this node by creating a folksonomy link to the node in the tag.

repository: The repository name.

workspace: The workspace name.

userName: The username.

void Add a private tag to a document. A folksonomy link will be created in a tag node.
addGroupsTag(String[] tagsName, Node documentNode,String repository, String workspace, String[] roles) throws Exception ;

tagNames: The array of tag name as the children of tree.

documentNode: Tag this node by creating a folksonomy link to the node in tag.

repository: The repository name.

workspace: The workspace name.

roles: The user roles.

void Add a group tag to a document. A folksonomy link will be created in a tag node.
addPublicTag(String treePath, String[] tagsName, Node documentNode, String repository, String workspace) throws Exception ;

treePath: The path of folksonomy tree.

tagNames: The array of the tag name as the children of tree.

documentNode: Tag this node by creating a folksonomy link to the node in the tag.

repository: The repository name.

workspace: The workspace name.

void Add a public tag to a document. A folksonomy link will be created in a tag node.
addSiteTag(String siteName, String[] tagsName, Node node, String repository, String workspace) throws Exception ;

siteName: The portal name.

treePath: The path of folksonomy tree.

tagNames: The array of the tag name as the children of tree.

documentNode: Tag this node by creating a folksonomy link to the node in tag.

repository: The repository name.

workspace: The workspace name.

void Add a site tag to a document. A folksonomy link will be created in a tag node.
getAllPrivateTags(String userName, String repository, String workspace) throws Exception ;

userName: The user name.

repository: The repository name.

workspace: The workspace name.

List<Node> Get all private tags.
getAllPublicTags(String treePath, String repository, String workspace) throws Exception ;

treePath: The folksonomy tree path.

repository: The repository name.

workspace: The workspace name.

List<Node> Get all public tags.
getAllGroupTagsString[] roles, String repository, String workspace) throws Exception ;

roles: The roles of user.

repository: The repository name.

workspace: The workspace name.

List<Node> Get all tags by groups.
getAllGroupTags(String role, String repository, String workspace) throws Exception ;

role: The role of user.

repository: The repository name.

workspace: The workspace name.

List<Node> Get all tags by a group.
getAllSiteTags(String siteName, String repository, String workspace) throws Exception ;

siteName: The portal name.

treePath: Folksonomy tree path.

repository: The repository name.

workspace: The workspace name.

List<Node> Get all tags of Site.
getAllDocumentsByTag(String tagPath, String repository, String workspace, SessionProvider sessionProvider) throws Exception ;

treeName: The name of folksonomy tree.

tagName: The name of a tag.

repository: The repository name.

List<Node> Get all documents which are stored in a tag and return a list of documents in a tag.
getTagStyle(String tagPath, String repository, String workspace) throws Exception ;

tagPath

workspace: The workspace name.

repository: The repository name.

String Get HTML_STYLE_PROP property in styleName node in the repository.
addTagStyle(String styleName, String tagRange, String htmlStyle, String repository, String workspace) throws Exception ;

styleName: The style name.

tagRate: The range of tag numbers.

htmlStyle: The tag style.

repository: The repository name.

workspace: The workspace name.

void Update the properties TAG_RATE_PROP and HTML_STYLE_PROP, following the values tagRate, htmlStyle for a node in tagPath in repository.
updateTagStyle(String styleName, String tagRange, String htmlStyle, String repository, String workspace) throws Exception ;

styleName: The style name.

tagRate: The range of tag numbers.

htmlStyle: The tag style.

repository: The repository name.

workspace: The workspace name.

void Update the properties TAG_RATE_PROP and HTML_STYLE_PROP, following the value tagRate, htmlStyle for a node in tagPath in repository.
getAllTagStyle(String repository, String workspace) throws Exception ;

repository: The repository name

workspace: The workspace name.

List<Node> Get all tag style bases of a folksonomy tree.
init(String repository) throws Exception ; repository: The repository name. void Initialize all TagStylePlugin with session in repository name.
removeTagOfDocument(String tagPath, Node document, String repository, String workspace) throws Exception;

treeName: The name of a folksonomy tree.

tagName: The name of a tag.

document: The document which is added a link to tagName.

repository: The repository name.

void Remove a tag of a given document.
removeTag(String tagPath, String repository, String workspace) throws Exception;

tagPath: The path of the tag.

repository: The repository name.

workspace: The workspace name.

void Remove a tag.
modifyTagName(String tagPath, String newTagName, String repository, String workspace) throws Exception;

tagPath: The name of the tag.

newTagName: The new tag name.

repository: The repository name.

workspace: The workspace name.

Node Modify the tag name.
getLinkedTagsOfDocument(Node documentNode, String repository, String workspace) throws Exception;

documentNode: The document node.

repository

workspace

List<Node> Get all tags linked to a given document.
getLinkedTagsOfDocumentByScope(int scope, String value, Node documentNode, String repository, String workspace) throws Exception;

documentNode: The document node.

repository: The repository name.

workspace: The workspace name.

List<Node> Get all tags linked to a given document by scope.
removeTagsOfNodeRecursively(Node node, String repository, String workspace, String username, String groups) throws Exception;

node

repository

workspace

void Remove all tags linked to the child nodes of a given node.
addTagPermission(String usersOrGroups); usersOrGroups void Add given users or groups to tagPermissionList.
removeTagPermission(String usersOrGroups); usersOrGroups void Remove given users or groups from tagPermissionList.
getTagPermissionList();N/A List<String> Return tagPermissionList.
canEditTag(int scope, List<String> memberships);

scope

memberships

boolean Set the permission to edit a tag for a user.
getAllTagNames(String repository, String workspace, int scope, String value) throws Exception;

repository

workspace

scope: The scope of tags.

value: The value, according to scope, can be understood differently.

List<String> Get all tag names which start within a given scope.

This class is used to manage dynamic groovy templates for WCM-based products.

Package org.exoplatform.services.cms.views.ApplicationTemplateManager;

Method Param Return Description
addPlugin(PortletTemplatePlugin portletTemplatePlugin) throws Exception portletTemplatePlugin void Add the plugin..
getAllManagedPortletName(String repository) throws Exception repository List<String> Retrieve all the portlet names that have dynamic groovy templates managed by service.
getTemplatesByApplication(String repository, String portletName, SessionProvider provider)throws Exception;

repository

portletName

provider: The provider.

List<String> Retrieve the templates node by application.
getTemplatesByCategory(String repository, String portletName, String category, SessionProvider sessionProvider) throws Exception;

repository

portletName

category

sessionProvider

List<String> Retrieve the templates node by category.
getTemplateByName(String repository, String portletName, String category, String templateName, SessionProvider sessionProvider)throws Exception;

repository

portletName

category

templateName

sessionProvider

Node Retrieve the template by name.
getTemplateByPath(String repository, String templatePath, SessionProvider sessionProvider)throws Exception ;

repository

templatePath

sessionProvider

Node Get the template by path.
addTemplate(Node portletTemplateHome, PortletTemplateConfig config)throws Exception;

portletTemplateHome

config

void Add the template.
removeTemplate(String repository, String portletName, String catgory, String templateName, SessionProvider sessionProvider)throws Exception;

repository

portletName

catgory

templateName

sessionProvider

void Remove the template.

NodeFinder is used to find a node with a given path. If the path to the node contains sub-paths to exo:symlink nodes, find the real link node.

Method Param Return Description
getNode(Node ancestorNode, String relativePath) throws PathNotFoundException, RepositoryException;

ancestorNode: The ancestor of the node to retrieve from which we start.

relativePath: The relative path of the node to retrieve.

Node Return the node at relPath related to the ancestor node.
getNode(Node ancestorNode, String relativePath, boolean giveTarget) throws PathNotFoundException, RepositoryException;

ancestorNode: The ancestor of the node to retrieve from which we start.

relativePath: The relative path of the node to retrieve.

giveTarget: Indicate if the target must be returned in case the item is a link.

Node Return the node at relPath related to the ancestor node. If the node is a link and giveTarget has been set to <code>true</code>, the target node will be returned.
getItem(String repository, String workspace, String absPath) throws PathNotFoundException, RepositoryException;

repository: The repository name.

workspace: The workspace name.

absPath: An absolute path.

Item Return the item at the specified absolute path.
getItemSys(String repository, String workspace, String absPath, boolean system) throws PathNotFoundException, RepositoryException;

repository: The name of repository

workspace: The workspace name.

absPath: An absolute path.

Item Return the item at the specified absolute path.
getItem(String repository, String workspace, String : absPath, boolean giveTarget) throws PathNotFoundException, RepositoryException;

repository: The repository name.

workspace: The workspace name.

absPath: An absolute path.

giveTarget: Indicate if the target must be returned in case the item is a link.

Item Return the item at the specified absolute path. If the item is a link and giveTarget has been set to <code>true</code>, the target node will be returned.
getItemGiveTargetSys(String repository, String workspace, String absPath, boolean giveTarget, boolean system) throws PathNotFoundException, RepositoryException;

repository: The repository name.

workspace: The workspace name.

absPath: An absolute path.

giveTarget: Indicate if the target must be returned in case the item is a link.

system: The system provider.

Item Return the item at the specified absolute path. If the item is a link and giveTarget has been set to <code>true</code>, the target node will be returned.
getItem(Session session, String absPath) throws PathNotFoundException, RepositoryException;

session: The session is used to get the item.

absPath: An absolute path.

Item Return the item at the specified absolute path.
getItem(Session session, String absPath, boolean giveTarget) throws PathNotFoundException, RepositoryException;

session: The session is used to get the item.

absPath: An absolute path.

giveTarget: Indicate if the target must be returned in case the item is a link.

Item Return the item at the specified absolute path. If the item is a link and giveTarget has been set to <code>true</code>, the target node will be returned.
getItemTarget(Session session, String absPath, boolean giveTarget, boolean system) throws PathNotFoundException, RepositoryException;

session: The session is used to get the item.

absPath: An absolute path.

giveTarget: Indicate if the target must be returned in case the item is a link.

system: The system provider

Item Return the item at the specified absolute path. If the item is a link and giveTarget has been set to <code>true</code>, the target node will be returned.
itemExists(Session session, String absPath) throws RepositoryException;

session: The session is used to get the item.

absPath: An absolute path.

boolean

Return <code>true</code> if an item exists at absPath; otherwise returns <code>false</code>.

Also returns <code>false</code> if the specified absPath is malformed.

JodConverter is used to convert documents into different office formats.

Package org.exoplatform.services.cms.jodconverter.JodConverterService

Method Param Return Description
convert(InputStream input, String formatInput, OutputStream out, String formatOutput) throws Exception;

input

formatInput

out

formatOutput

void Convert InputStream in the formatInput format to OutputStream with the formatOutput format.

SiteSearchService is used in the Search portlet that allows users to find all information matching with your given keyword.

Method Param Return Description
addExcludeIncludeDataTypePlugin(ExcludeIncludeDataTypePlugin plugin) plugin: The plugin. voidFilter mimetypes data in the search results.
searchSiteContents(SessionProvider sessionProvider, QueryCriteria queryCriteria, int pageSize, boolean isSearchContent) throws Exception;

queryCriteria: The query criteria for SiteSearchService. Basing on search criteria, SiteSearchService can easily create the query statement to search.

sessionProvider: The session provider.

pageSize: The number of search results on a page.

AbstractPageList<ResultNode>Find all child nodes whose contents match with the given keyword. These nodes will be put in the list of search results.

SEOService supplies APIs to manage SEO data of a page or a content. This service includes some major functions which enables you to add, store, get or remove the metadata of a page or a content.

Method Param Return Description
storePageMetadata(PageMetadataModel metaModel, String portalName, boolean onContent) throws Exception

metaModel: The metadata of a page/content stored.

portalName: The name of portal.

onContent: Indicate whether the current page is the content page or the portal page.

voidStore the metadata of a page/content.
getMetadata(ArrayList<String> params, String pageReference) throws Exception

params: The parameters list of a content page.

pageReference: The reference of the page.

PageMetadataModel Return the metadata of a portal page or a content page.
getPageMetadata (String pageReference) throws Exception pageReference: The reference of the page. PageMetadataModel Return the metadata of a portal page.
getContentMetadata(ArrayList<String> params) throws Exception params: The parameters list of a content page. PageMetadataModelReturn the metadata of a content page.
removePageMetadata(PageMetadataModel metaModel, String portalName, boolean onContent) throws Exception

metaModel: The metadata of a page/content stored.

portalName: The name of portal.

onContent: Indicate whether the current page is the content page or the portal page.

void Remove the metadata of a page.
getContentNode(String contentPath) throws Exception contentPath: The content path. NodeReturn the content node by the content path.
getHash(String uri) throws Exception uri: The page reference of the UUID of a node. String Create a key from the page reference or the UUID of the node.
getSitemap(String portalName) throws Exception portalName: The portal name. StringReturn a sitemap's content of a specific portal.
getRobots(String portalName) throws Exception portalName: The portal name. StringReturn Robots' content of a specific portal.
getRobotsIndexOptions() throws Exception N/A List<String> Return a list of options (INDEX and NOINDEX) for robots to index.
getRobotsFollowOptions() throws Exception N/A List<String> Return a list of options (FOLLOW and NOFOLLOW) for robots to follow.
getFrequencyOptions() throws ExceptionN/A List<String>Return a list of options for frequency.

The addPlugin() function of WorkflowServiceContainer service is used to register a Business Process when a workflow is implemented. Thus, if you want to use a workflow, you are required to configure the workflow service to invoke the addPlugin() function by adding the external-component-plugins element to the configuration file.

You have to set values for the name and location of the workflow which you want to use. There are TWO ways to configure the location of the workflow.

You can use "war:(FOLDER_PATH)" to configure which .jar files contain your workflow processes inside the .war file.



<external-component-plugins>
  <target-component>org.exoplatform.services.workflow.WorkflowServiceContainer</target-component>
  <component-plugin>
    <name>deploy.predefined.processes</name>
    <set-method>addPlugin</set-method>
    <type>org.exoplatform.services.workflow.PredefinedProcessesPlugin</type>
    <init-params>
      <object-param>
        <name>predefined.processes</name>
        <description>load of default business processes</description>
        <object type="org.exoplatform.services.workflow.ProcessesConfig">
          <field name="processLocation">
            <string>war:/conf/bp</string>
          </field>
          <field name="predefinedProcess">
            <collection type="java.util.HashSet">
              <value>
                <string>/exo-ecms-ext-workflow-bp-jbpm-content-2.1.1.jar</string>
              </value>
              <value>
                <string>/exo-ecms-ext-workflow-bp-jbpm-payraise-2.1.1.jar</string>
              </value>
              <value>
                <string>/exo-ecms-ext-workflow-bp-jbpm-holiday-2.1.1.jar</string>
              </value>
            </collection>
          </field>
        </object>
      </object-param>
    </init-params>
  </component-plugin>
</external-component-plugins>

You can use "classpath:" to configure which .jar files contain your workflow processes inside the .jar file.

The notification message is displayed when you deploy a workflow on Jboss. If you use "classpath:" to register, you must put your workflow in the .jar files inside the gatein.ear/lib folder (instead of the lib folder) to make it work.