<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to add a new field to relations? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315336#M2337</link>
    <description>&lt;P&gt;We are trying to add a new field ("quantity") to relations.&lt;/P&gt;
&lt;P&gt;We have created a new schema ("relation-extended"), and we have override Relation doctype adding this schema (in relation-extended-contrib.xml):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;component name="org.nuxeo.sample.relationextended"&amp;gt;
  &amp;lt;require&amp;gt;org.nuxeo.ecm.core.CoreExtensions&amp;lt;/require&amp;gt;

  &amp;lt;extension point="schema" target="org.nuxeo.ecm.core.schema.TypeService"&amp;gt;
    &amp;lt;schema name="relation-extended" prefix="relext" src="schema/relationextended.xsd"/&amp;gt;
  &amp;lt;/extension&amp;gt;

  &amp;lt;extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService"&amp;gt;
    &amp;lt;doctype name="Relation"&amp;gt; &amp;lt;!-- no extends --&amp;gt;
      &amp;lt;schema name="relation"/&amp;gt;
      &amp;lt;schema name="dublincore"/&amp;gt;
      &amp;lt;schema name="relation-extended"/&amp;gt;
    &amp;lt;/doctype&amp;gt;
  &amp;lt;/extension&amp;gt;
&amp;lt;/component&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This is the content of the new schema:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;xs:element name="quantity" type="xs:integer" default="1"/&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We have seen that it has created a new table in the database, with an ID and the field QUANTITY.&lt;/P&gt;
&lt;P&gt;Afterwards, we followed &lt;A href="http://doc.nuxeo.com/display/NXDOC/How+to+Override+a+Seam+Component" target="test_blank"&gt;http://doc.nuxeo.com/display/NXDOC/How+to+Override+a+Seam+Component&lt;/A&gt; how to:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;P&gt;Created RelationExtendedActionsBean.java&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;	package org.nuxeo.sample;
//Imports

@Name("relationActions")
@Scope(CONVERSATION)
@Install(precedence = 100)
public class RelationExtendedActionsBean extends RelationActionsBean {
  private static final long serialVersionUID = 1L;

	@Override
	public String addStatement() throws ClientException {
		return null;
	}
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Added an empty &lt;CODE&gt;seam.properties&lt;/CODE&gt; under the folder &lt;CODE&gt;src/main/resources&lt;/CODE&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Added required statements in deployment-fragment:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;	&amp;lt;fragment version="1"&amp;gt;
		&amp;lt;require&amp;gt;org.nuxeo.ecm.webapp.ui&amp;lt;/require&amp;gt;
		&amp;lt;require&amp;gt;org.nuxeo.ecm.relations.web&amp;lt;/require&amp;gt;  
		&amp;lt;install&amp;gt;
			&amp;lt;unzip from="${bundle.fileName}" to="/" prefix="web"&amp;gt;
				&amp;lt;include&amp;gt;web/nuxeo.war/**&amp;lt;/include&amp;gt;
			&amp;lt;/unzip&amp;gt;        
		&amp;lt;/install&amp;gt;
	&amp;lt;/fragment&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;INFO logs are active in log4j.xml for Seam but we don't see our Seam component in the logs:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;category name="org.jboss.seam"&amp;gt;
		&amp;lt;priority value="INFO" /&amp;gt;
    &amp;lt;/category&amp;gt;
		/***/
	&amp;lt;category name="org.jboss.seam.contexts.Contexts"&amp;gt;
		&amp;lt;priority value="INFO" /&amp;gt;
	&amp;lt;/category&amp;gt;
	&amp;lt;category name="org.jboss.seam.contexts.Lifecycle"&amp;gt;
		&amp;lt;priority value="INFO" /&amp;gt;
	&amp;lt;/category&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We don't see our component in the logs if we try to override an existing one, we just see it when we create a new Seam component using Nuxeo IDE:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;2015-02-19 18:09:43,491 INFO  [http-bio-0.0.0.0-8080-exec-4] [org.jboss.seam.Component] Component: newRelation, scope: CONVERSATION, type: JAVA_BEAN, class: org.nuxeo.sample.NewRelationBean
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We notice that it's not overriding, because it keeps creating the relation, and our addStatement does nothing. Also, the debugger doesn't stop in any breakpoint we put in our class.&lt;/P&gt;
&lt;P&gt;The bundle structure is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;src/main/
	java/org/nuxeo/sample/
		RelationExtendedActionsBean.java
	resources/
		META-INF/
			MANIFEST.MF
		OSGI-INF/
			extensions/
				relation-extended-contrib.xml
			deployment-fragment.xml
		schema/
			relationextended.xsd
		web/nuxeo.war/
			create_relation.xhtml
		seam.properties
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We are new in Nuxeo... What do you mean by registering our Seam bean?
Do we miss a contribution to any extension point to register our Seam component?
We just override &lt;CODE&gt;create_relation.xhtml&lt;/CODE&gt;, do we need to override &lt;CODE&gt;document_relations.xhtml&lt;/CODE&gt;?&lt;/P&gt;
&lt;P&gt;Thank you in advance,&lt;/P&gt;</description>
    <pubDate>Fri, 13 Feb 2015 13:34:01 GMT</pubDate>
    <dc:creator>ioihanguren_</dc:creator>
    <dc:date>2015-02-13T13:34:01Z</dc:date>
    <item>
      <title>How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315336#M2337</link>
      <description>&lt;P&gt;We are trying to add a new field ("quantity") to relations.&lt;/P&gt;
&lt;P&gt;We have created a new schema ("relation-extended"), and we have override Relation doctype adding this schema (in relation-extended-contrib.xml):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;component name="org.nuxeo.sample.relationextended"&amp;gt;
  &amp;lt;require&amp;gt;org.nuxeo.ecm.core.CoreExtensions&amp;lt;/require&amp;gt;

  &amp;lt;extension point="schema" target="org.nuxeo.ecm.core.schema.TypeService"&amp;gt;
    &amp;lt;schema name="relation-extended" prefix="relext" src="schema/relationextended.xsd"/&amp;gt;
  &amp;lt;/extension&amp;gt;

  &amp;lt;extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService"&amp;gt;
    &amp;lt;doctype name="Relation"&amp;gt; &amp;lt;!-- no extends --&amp;gt;
      &amp;lt;schema name="relation"/&amp;gt;
      &amp;lt;schema name="dublincore"/&amp;gt;
      &amp;lt;schema name="relation-extended"/&amp;gt;
    &amp;lt;/doctype&amp;gt;
  &amp;lt;/extension&amp;gt;
&amp;lt;/component&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This is the content of the new schema:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;xs:element name="quantity" type="xs:integer" default="1"/&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We have seen that it has created a new table in the database, with an ID and the field QUANTITY.&lt;/P&gt;
&lt;P&gt;Afterwards, we followed &lt;A href="http://doc.nuxeo.com/display/NXDOC/How+to+Override+a+Seam+Component" target="test_blank"&gt;http://doc.nuxeo.com/display/NXDOC/How+to+Override+a+Seam+Component&lt;/A&gt; how to:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;P&gt;Created RelationExtendedActionsBean.java&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;	package org.nuxeo.sample;
//Imports

@Name("relationActions")
@Scope(CONVERSATION)
@Install(precedence = 100)
public class RelationExtendedActionsBean extends RelationActionsBean {
  private static final long serialVersionUID = 1L;

	@Override
	public String addStatement() throws ClientException {
		return null;
	}
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Added an empty &lt;CODE&gt;seam.properties&lt;/CODE&gt; under the folder &lt;CODE&gt;src/main/resources&lt;/CODE&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Added required statements in deployment-fragment:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;	&amp;lt;fragment version="1"&amp;gt;
		&amp;lt;require&amp;gt;org.nuxeo.ecm.webapp.ui&amp;lt;/require&amp;gt;
		&amp;lt;require&amp;gt;org.nuxeo.ecm.relations.web&amp;lt;/require&amp;gt;  
		&amp;lt;install&amp;gt;
			&amp;lt;unzip from="${bundle.fileName}" to="/" prefix="web"&amp;gt;
				&amp;lt;include&amp;gt;web/nuxeo.war/**&amp;lt;/include&amp;gt;
			&amp;lt;/unzip&amp;gt;        
		&amp;lt;/install&amp;gt;
	&amp;lt;/fragment&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;INFO logs are active in log4j.xml for Seam but we don't see our Seam component in the logs:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;category name="org.jboss.seam"&amp;gt;
		&amp;lt;priority value="INFO" /&amp;gt;
    &amp;lt;/category&amp;gt;
		/***/
	&amp;lt;category name="org.jboss.seam.contexts.Contexts"&amp;gt;
		&amp;lt;priority value="INFO" /&amp;gt;
	&amp;lt;/category&amp;gt;
	&amp;lt;category name="org.jboss.seam.contexts.Lifecycle"&amp;gt;
		&amp;lt;priority value="INFO" /&amp;gt;
	&amp;lt;/category&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We don't see our component in the logs if we try to override an existing one, we just see it when we create a new Seam component using Nuxeo IDE:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;2015-02-19 18:09:43,491 INFO  [http-bio-0.0.0.0-8080-exec-4] [org.jboss.seam.Component] Component: newRelation, scope: CONVERSATION, type: JAVA_BEAN, class: org.nuxeo.sample.NewRelationBean
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We notice that it's not overriding, because it keeps creating the relation, and our addStatement does nothing. Also, the debugger doesn't stop in any breakpoint we put in our class.&lt;/P&gt;
&lt;P&gt;The bundle structure is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;src/main/
	java/org/nuxeo/sample/
		RelationExtendedActionsBean.java
	resources/
		META-INF/
			MANIFEST.MF
		OSGI-INF/
			extensions/
				relation-extended-contrib.xml
			deployment-fragment.xml
		schema/
			relationextended.xsd
		web/nuxeo.war/
			create_relation.xhtml
		seam.properties
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We are new in Nuxeo... What do you mean by registering our Seam bean?
Do we miss a contribution to any extension point to register our Seam component?
We just override &lt;CODE&gt;create_relation.xhtml&lt;/CODE&gt;, do we need to override &lt;CODE&gt;document_relations.xhtml&lt;/CODE&gt;?&lt;/P&gt;
&lt;P&gt;Thank you in advance,&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2015 13:34:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315336#M2337</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-02-13T13:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315337#M2338</link>
      <description>&lt;P&gt;You should add new fields to your version of create_relation.xhtml.
After that you should add to your deployment-fragment.xml file a require statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;require&amp;gt;org.nuxeo.ecm.relations.web&amp;lt;/require&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you should replace RelationActionsBean.java by your version. You can do this by adding a proper "precedence".&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;@Name("relationActions")
@Scope(CONVERSATION)
@AutomaticDocumentBasedInvalidation
@Install(precedence = 100)
public class RelationActionsBean extends DocumentContextBoundActionBean
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In RelationActionsBean.java it is necessary to change the addStatement method.&lt;/P&gt;
&lt;P&gt;If you need a validation for your new fields then the RelationCreationBean.java should be also repleaced.&lt;/P&gt;
&lt;P&gt;Adam&lt;/P&gt;</description>
      <pubDate>Sat, 14 Feb 2015 01:18:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315337#M2338</guid>
      <dc:creator>adam_bo_</dc:creator>
      <dc:date>2015-02-14T01:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315338#M2339</link>
      <description>&lt;P&gt;Thank you very much, Adam!! You have been very helpful &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2015 11:11:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315338#M2339</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-02-16T11:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315339#M2340</link>
      <description>&lt;P&gt;Hello again,&lt;/P&gt;
&lt;P&gt;We have followed the steps you told us. But we still have some problems. We are not able to override RelationActionsBean.java&lt;/P&gt;
&lt;P&gt;We have created the class RelationExtendedActionsBean.java following this how-to: &lt;A href="http://doc.nuxeo.com/display/NXDOC/How+to+Override+a+Seam+Component" target="test_blank"&gt;http://doc.nuxeo.com/display/NXDOC/How+to+Override+a+Seam+Component&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;package com.my.package.relations;

//Imports

@Name("relationActions")
@Scope(CONVERSATION)
@Install(precedence = 100)
public class RelationExtendedActionsBean extends RelationActionsBean {

      private static final long serialVersionUID = 1L;

      @Override
      public String addStatement() throws ClientException {
          return null;
      }
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We notice that it's not overriding, because it keeps creating the relation, and our addStatement does nothing. Also, the debugger doesn't stop in any breakpoint we put in our class.
And we don't see any line in the logs saying that our Seam component has loaded.&lt;/P&gt;
&lt;P&gt;We have tried with different precedences: Install.MOCK, 100, etc.&lt;/P&gt;
&lt;P&gt;Are we missing something?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2015 15:10:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315339#M2340</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-02-19T15:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315340#M2341</link>
      <description>&lt;P&gt;This is not an answer. Please just edit your original question with what you tried, and add a comment to the given answer to say what you changed.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2015 17:15:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315340#M2341</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2015-02-19T17:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315341#M2342</link>
      <description>&lt;P&gt;Could you show us a structure of your bundle ?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2015 22:29:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315341#M2342</guid>
      <dc:creator>adam_bo_</dc:creator>
      <dc:date>2015-02-19T22:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315342#M2343</link>
      <description>&lt;P&gt;Sorry Florent, we have reformulated the question with all the steps we have followed.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2015 10:22:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315342#M2343</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-02-20T10:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315343#M2344</link>
      <description>&lt;P&gt;I tried your example and the following one works.&lt;/P&gt;
&lt;P&gt;The structure tree:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;src/main/
    java/org/nuxeo/sample/
        RelationExtendedActionsBean.java
    resources/
        META-INF/
            MANIFEST.MF
        OSGI-INF/
            deployment-fragment.xml
        seam.properties
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;MANIFEST.MF:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Manifest-Version: 1.0
Bundle-Vendor: sample
Bundle-Version: 5.8
Bundle-ManifestVersion: 2
Bundle-Name: New TEST
Bundle-SymbolicName: org.nuxeo.sample.relations.test;singleton:=true
Bundle-Category: web,stateful
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;deployment-fragment.xml:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0"?&amp;gt;
&amp;lt;fragment version="1"&amp;gt;
    &amp;lt;require&amp;gt;org.nuxeo.ecm.webapp.ui&amp;lt;/require&amp;gt;
    &amp;lt;require&amp;gt;org.nuxeo.ecm.relations.web&amp;lt;/require&amp;gt;  
&amp;lt;/fragment&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;RelationExtendedActionsBean.java:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;package org.nuxeo.sample;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.nuxeo.ecm.platform.relations.web.listener.ejb.RelationActionsBean;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
import org.jboss.seam.annotations.Install;   
import static org.jboss.seam.ScopeType.CONVERSATION;
import org.nuxeo.ecm.core.api.ClientException;

@Name("relationActions")
@Scope(CONVERSATION)
@Install(precedence = 100)
public class RelationExtendedActionsBean extends RelationActionsBean {
  private static final long serialVersionUID = 1L;
  private static final Log log = LogFactory.getLog(RelationExtendedActionsBean.class);
  
    @Override
    public String addStatement() throws ClientException {
    	log.debug("test add statement");
        return null;
    }
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can try it.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 21:08:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315343#M2344</guid>
      <dc:creator>adam_bo_</dc:creator>
      <dc:date>2015-02-24T21:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315344#M2345</link>
      <description>&lt;P&gt;We have tried exactly the same, but it didn't work. It creates relations as always, and in the logs (server.log) the only line related to RelationActions is this&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 09:57:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315344#M2345</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-02-25T09:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315345#M2346</link>
      <description>&lt;P&gt;I have used Eclipse Luna without Nuxeo IDE and Nuxeo 5.8 HF 21.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 10:33:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315345#M2346</guid>
      <dc:creator>adam_bo_</dc:creator>
      <dc:date>2015-02-25T10:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315346#M2347</link>
      <description>&lt;P&gt;Yes, we also have reduced the bundle to the bean class, we have copied your code exactly. And we think that it's not a MANIFEST.MF problem, because we see in the logs that the bundle is deployed&lt;/P&gt;</description>
      <pubDate>Thu, 26 Feb 2015 18:20:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315346#M2347</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-02-26T18:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315347#M2348</link>
      <description>&lt;P&gt;I don't think that this is the Nuxeo IDE.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Feb 2015 09:11:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315347#M2348</guid>
      <dc:creator>adam_bo_</dc:creator>
      <dc:date>2015-02-27T09:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315348#M2349</link>
      <description>&lt;P&gt;Thank you Adam,&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2015 11:54:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315348#M2349</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-03-02T11:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new field to relations?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315349#M2350</link>
      <description>&lt;P&gt;We have tried creating a JAR and copying to the plugins folder and it works, so we think it is something related with the IDE or the SDK. We have posted another question&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2015 16:16:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-add-a-new-field-to-relations/m-p/315349#M2350</guid>
      <dc:creator>ioihanguren_</dc:creator>
      <dc:date>2015-03-09T16:16:59Z</dc:date>
    </item>
  </channel>
</rss>

