<?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 Re: node name cm:name changed when check-in node after update (Java Foundation API) in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131118#M35410</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;SPAN&gt;Abhinav:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you for your answer. I tried your suggestion, but I get an error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Caused by: org.alfresco.service.cmr.repository.DuplicateChildNodeNameException: Duplicate child name not allowed:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;This happens in this line:&amp;nbsp;ns.setProperties(nodeCheckedOut, propsFile);&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;}else {
			NodeRef nodeCheckedOut = coci.checkout(nr);
			Map&amp;lt;String,Serializable&amp;gt; vproprs = new HashMap&amp;lt;String,Serializable&amp;gt;();
			vproprs.put(Version.PROP_DESCRIPTION, "Nuova versione contenuto");
			ContentWriter writer = cs.getWriter(nodeCheckedOut, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);
			ns.setProperties(nodeCheckedOut, propsFile);&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;It's like the CHECKED OUT file is created at the same level of the original file.....&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Any idea to solve this issue?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Thank you .&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Feb 2022 09:28:59 GMT</pubDate>
    <dc:creator>euleon</dc:creator>
    <dc:date>2022-02-28T09:28:59Z</dc:date>
    <item>
      <title>node name cm:name changed when check-in node after update (Java Foundation API)</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131114#M35406</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;I'm trying to update a&amp;nbsp; node loading a new binary content and versioning it inside a new API REST. The code I post it works, but the problem is that after checkin, the cm:name changes..... How can I solve that problem? Alfresco version: 4.2.f Thank you.&lt;/P&gt;&lt;PRE&gt;NodeRef nodeCheckedOut = coci.checkout(nr);
			Map&amp;lt;String,Serializable&amp;gt; vproprs = new HashMap&amp;lt;String,Serializable&amp;gt;();
			vproprs.put(Version.PROP_DESCRIPTION, "Nuova versione contenuto");
			vproprs.put("name", fileName);
			logger.info("Eseguito CHECK OUT del nodo. " + nodeCheckedOut);
			ContentWriter writer = cs.getWriter(nodeCheckedOut, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);

			//propsOriginalFile = ns.getProperties(nodeCheckedOut);
			//propsOriginalFile.putAll(propsFile);
			ns.setProperties(nodeCheckedOut, propsFile);
			//writer.setEncoding(encoding);
			try {
				writer.putContent(input);
			}catch(ContentIOException cie) {
				logger.error("Errori con update del contenuto del documento checked out: " + nodeCheckedOut );
				errori.concat("Errori con update del contenuto del documento checked out: " + nodeCheckedOut );
				model.put("errore",errori);
				return model;
			}
			newDoc = coci.checkin(nodeCheckedOut, vproprs);&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Feb 2022 08:50:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131114#M35406</guid>
      <dc:creator>euleon</dc:creator>
      <dc:date>2022-02-22T08:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: node name cm:name changed when check-in node after update (Java Foundation API)</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131115#M35407</link>
      <description>&lt;P&gt;The code you have shared has some reference of code that is not availble in your snippet. Could you please share the full code to review?&lt;/P&gt;
&lt;P&gt;Also can you eloborate what exactly you are trying to achieve? Are you trying to keep the old name that was before versioning or you want to change to new one ?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 20:52:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131115#M35407</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-02-22T20:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: node name cm:name changed when check-in node after update (Java Foundation API)</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131116#M35408</link>
      <description>&lt;P&gt;Hello, Abhinav:&lt;/P&gt;&lt;P&gt;thank you for your answer. Here is the Webscsript code. Basically I'm trying to update de binary content from a node and I hope to get once the checkin is done, the original file name (cm:name). But now what happens is that after doing the checkin, the cm:name is changed into UUID value..... How can I solve this?&amp;nbsp; Thank you.&lt;/P&gt;&lt;PRE&gt;	protected Map&amp;lt;String, Object&amp;gt; executeImpl(WebScriptRequest req, Status status, Cache cache) {
		NodeService ns = this.getServiceRegistry().getNodeService();
		Map&amp;lt;String, Object&amp;gt; model = new HashMap&amp;lt;String, Object&amp;gt;();
		Map&amp;lt;QName, Serializable&amp;gt; propsFile = null;
		Map&amp;lt;QName, Serializable&amp;gt; propsOriginalFile = null;
		String nodeId = ""; 
		String fileName = "";
		String contentbase64="";
		String mimetype = "";
		String doctype = "";
		String docdesc = "";
		String docorigfilename = "";
		String iddomandaposiz = "";
		String errori = new String();
		ChildAssociationRef child  = null;
		NodeRef newDoc = null;
		ContentService cs = this.getServiceRegistry().getContentService();
		CheckOutCheckInService coci = this.getServiceRegistry().getCheckOutCheckInService();
		VersionService vs = this.getServiceRegistry().getVersionService();
		//raccolta parametri e trasformazione
		FormData form = (FormData) req.parseContent();
		FormData.FormField[] fields = form.getFields();
		for (FormData.FormField field : fields) {
			switch (field.getName()) {
			case "nodeid":
				nodeId += field.getValue();
				if (nodeId == null || nodeId =="" || nodeId ==" "){
					errori.concat("Parametro idfolder non valorizzato.");
					model.put("errori", errori);
					return model;
				}
				break;
			case "nomefile": 
				fileName += field.getValue();
				if (fileName == null || fileName =="" || fileName ==" "){
					errori.concat("Parametro nomefile non valorizzato.");
					model.put("errori", errori);
					return model;
				}		
				break;
			case "contentbase64":
				contentbase64 += field.getValue();
				if (contentbase64 == null || contentbase64 =="" || contentbase64 ==" "){
					errori.concat("Parametro contentbase64 non valorizzato.");
					model.put("errori", errori);
				}
				break;
			case "mimetype":
				mimetype += field.getValue();
				if (mimetype == null || mimetype =="" || mimetype ==" "){
					errori.concat("Parametro mimetype non valorizzato.");
					model.put("errori", errori);
				}
				break;
			case "doctype":
				doctype += field.getValue();
				if (doctype == null || doctype =="" || doctype ==" "){
					errori.concat("Parametro doctype non valorizzato.");
					model.put("errori", errori);
					return model;
				}
				break;
			case "docdesc":
				docdesc += field.getValue();
				break;
			case"docorigfilename":
				docorigfilename += field.getValue(); 
				break;

			case "iddomandaposiz":
				iddomandaposiz += field.getValue();
				break;
			}

		}
		NodeRef nr = new NodeRef("workspace://SpacesStore/" + nodeId);		
		if(!ns.exists(nr)) {
			logger.error("Non esiste il nodo. Impossibile fare update " + nr);
			errori.concat("Non esiste il nodo. Impossibile fare update " + nr);
			model.put("errori", errori);
			return model;
		}


		propsFile = new HashMap&amp;lt;&amp;gt;();
		ByteArrayInputStream input = new ByteArrayInputStream(DatatypeConverter.parseBase64Binary(contentbase64));
		switch(doctype)
		{
		case "fcs:doc":
			propsFile.put(PROP_DOC_DESCRIZIONE, docdesc);
			propsFile.put(PROP_DOC_ORIGINAL_FILENAME, docorigfilename);
			break;
		case "fcs:posizioniDoc":
			propsFile.put(PROP_DOC_POSIZIONI_ASPECT_ID_DOMANDA, iddomandaposiz);
			break;
		default:
			logger.error("Doctype non riconosciuto: " + doctype);
			errori.concat("Doctype non riconosciuto: " + doctype);
			model.put("errore",errori);
			return model;				
		}

		if(coci.isCheckedOut(nr)) {
			logger.info("Non si esegue CHECK OUT del nodo. E' già in checkout");
			ContentWriter writer = cs.getWriter(nr, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);
			ns.setProperties(nr, propsFile);
			try {
				writer.putContent(input);
			}catch(ContentIOException cie) {
				logger.error("Errori con update del contenuto del documento: " + nr );
				errori.concat("Errori con update del contenuto del documento: " + nr );
				model.put("errore",errori);
				return model;
			}
		}else {
			NodeRef nodeCheckedOut = coci.checkout(nr);
			Map&amp;lt;String,Serializable&amp;gt; vproprs = new HashMap&amp;lt;String,Serializable&amp;gt;();
			vproprs.put(Version.PROP_DESCRIPTION, "Nuova versione contenuto");
			ContentWriter writer = cs.getWriter(nodeCheckedOut, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);
			ns.setProperties(nodeCheckedOut, propsFile);
			try {
				writer.putContent(input);
			}catch(ContentIOException cie) {
				logger.error("Errori con update del contenuto del documento checked out: " + nodeCheckedOut );
				errori.concat("Errori con update del contenuto del documento checked out: " + nodeCheckedOut );
				model.put("errore",errori);
				return model;
			}
			newDoc = coci.checkin(nodeCheckedOut, vproprs);
			logger.debug("Checkin del file: " + newDoc);
		}

		model.put("content", newDoc.getId());
		model.put("errore", errori);
		model.put("mimetype", mimetype);
		return model;
	}&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Feb 2022 13:46:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131116#M35408</guid>
      <dc:creator>euleon</dc:creator>
      <dc:date>2022-02-23T13:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: node name cm:name changed when check-in node after update (Java Foundation API)</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131117#M35409</link>
      <description>&lt;P&gt;I see the issue, you are creating a new map of properties and doing setProperties call on nodeService.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1- Get the properties and then set properties&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/Alfresco/alfresco-community-repo/blob/master/repository/src/main/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java#L1525" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/Alfresco/alfresco-community-repo/blob/master/repository/src/main/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java#L1525&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;STRONG&gt;Map&amp;lt;QName, Serializable&amp;gt; propsFile = ns.getProperties(nr);&lt;/STRONG&gt;&lt;BR /&gt;// your code&lt;BR /&gt;if(coci.isCheckedOut(nr)) {&lt;BR /&gt;  // your code &lt;BR /&gt;&lt;STRONG&gt;  ns.setProperties(nr, propsFile);&lt;/STRONG&gt;&lt;BR /&gt;} else {&lt;BR /&gt;&lt;STRONG&gt;  ns.setProperties(nodeCheckedOut, propsFile);&lt;/STRONG&gt;&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;2- Use addProperties to put updated properties back to the node.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/Alfresco/alfresco-community-repo/blob/ad965d49fbffdc8ead654bf28a7f270f281b057c/repository/src/main/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java#L1660" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/Alfresco/alfresco-community-repo/blob/ad965d49fbffdc8ead654bf28a7f270f281b057c/repository/src/main/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java#L1660&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;STRONG&gt;Map&amp;lt;QName, Serializable&amp;gt; propsFile = new HashMap&amp;lt;QName, Serializable&amp;gt;(nr);
&lt;/STRONG&gt;// your code
if(coci.isCheckedOut(nr)) {
  // your code 
&lt;STRONG&gt;  ns.addProperties(nr, propsFile);
&lt;/STRONG&gt;} else {
&lt;STRONG&gt;  ns.addProperties(nodeCheckedOut, propsFile);
&lt;/STRONG&gt;}&lt;/PRE&gt;
&lt;P&gt;&lt;U&gt;Your updated code:&lt;/U&gt;&lt;/P&gt;
&lt;PRE&gt;protected Map&amp;lt;String, Object&amp;gt; executeImpl(WebScriptRequest req, Status status, Cache cache) {
		NodeService ns = this.getServiceRegistry().getNodeService();
		Map&amp;lt;String, Object&amp;gt; model = new HashMap&amp;lt;String, Object&amp;gt;();
		Map&amp;lt;QName, Serializable&amp;gt; propsFile = null;
		Map&amp;lt;QName, Serializable&amp;gt; propsOriginalFile = null;
		String nodeId = ""; 
		String fileName = "";
		String contentbase64="";
		String mimetype = "";
		String doctype = "";
		String docdesc = "";
		String docorigfilename = "";
		String iddomandaposiz = "";
		String errori = new String();
		ChildAssociationRef child  = null;
		NodeRef newDoc = null;
		ContentService cs = this.getServiceRegistry().getContentService();
		CheckOutCheckInService coci = this.getServiceRegistry().getCheckOutCheckInService();
		VersionService vs = this.getServiceRegistry().getVersionService();
		//raccolta parametri e trasformazione
		FormData form = (FormData) req.parseContent();
		FormData.FormField[] fields = form.getFields();
		for (FormData.FormField field : fields) {
			switch (field.getName()) {
			case "nodeid":
				nodeId += field.getValue();
				if (nodeId == null || nodeId =="" || nodeId ==" "){
					errori.concat("Parametro idfolder non valorizzato.");
					model.put("errori", errori);
					return model;
				}
				break;
			case "nomefile": 
				fileName += field.getValue();
				if (fileName == null || fileName =="" || fileName ==" "){
					errori.concat("Parametro nomefile non valorizzato.");
					model.put("errori", errori);
					return model;
				}		
				break;
			case "contentbase64":
				contentbase64 += field.getValue();
				if (contentbase64 == null || contentbase64 =="" || contentbase64 ==" "){
					errori.concat("Parametro contentbase64 non valorizzato.");
					model.put("errori", errori);
				}
				break;
			case "mimetype":
				mimetype += field.getValue();
				if (mimetype == null || mimetype =="" || mimetype ==" "){
					errori.concat("Parametro mimetype non valorizzato.");
					model.put("errori", errori);
				}
				break;
			case "doctype":
				doctype += field.getValue();
				if (doctype == null || doctype =="" || doctype ==" "){
					errori.concat("Parametro doctype non valorizzato.");
					model.put("errori", errori);
					return model;
				}
				break;
			case "docdesc":
				docdesc += field.getValue();
				break;
			case"docorigfilename":
				docorigfilename += field.getValue(); 
				break;

			case "iddomandaposiz":
				iddomandaposiz += field.getValue();
				break;
			}

		}
		NodeRef nr = new NodeRef("workspace://SpacesStore/" + nodeId);		
		if(!ns.exists(nr)) {
			logger.error("Non esiste il nodo. Impossibile fare update " + nr);
			errori.concat("Non esiste il nodo. Impossibile fare update " + nr);
			model.put("errori", errori);
			return model;
		}


		propsFile = ns.getProperties(nr);
		ByteArrayInputStream input = new ByteArrayInputStream(DatatypeConverter.parseBase64Binary(contentbase64));
		switch(doctype)
		{
		case "fcs:doc":
			propsFile.put(PROP_DOC_DESCRIZIONE, docdesc);
			propsFile.put(PROP_DOC_ORIGINAL_FILENAME, docorigfilename);
			break;
		case "fcs:posizioniDoc":
			propsFile.put(PROP_DOC_POSIZIONI_ASPECT_ID_DOMANDA, iddomandaposiz);
			break;
		default:
			logger.error("Doctype non riconosciuto: " + doctype);
			errori.concat("Doctype non riconosciuto: " + doctype);
			model.put("errore",errori);
			return model;				
		}

		if(coci.isCheckedOut(nr)) {
			logger.info("Non si esegue CHECK OUT del nodo. E' già in checkout");
			ContentWriter writer = cs.getWriter(nr, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);
			ns.setProperties(nr, propsFile);
			try {
				writer.putContent(input);
			}catch(ContentIOException cie) {
				logger.error("Errori con update del contenuto del documento: " + nr );
				errori.concat("Errori con update del contenuto del documento: " + nr );
				model.put("errore",errori);
				return model;
			}
		}else {
			NodeRef nodeCheckedOut = coci.checkout(nr);
			Map&amp;lt;String,Serializable&amp;gt; vproprs = new HashMap&amp;lt;String,Serializable&amp;gt;();
			vproprs.put(Version.PROP_DESCRIPTION, "Nuova versione contenuto");
			ContentWriter writer = cs.getWriter(nodeCheckedOut, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);
			ns.setProperties(nodeCheckedOut, propsFile);
			try {
				writer.putContent(input);
			}catch(ContentIOException cie) {
				logger.error("Errori con update del contenuto del documento checked out: " + nodeCheckedOut );
				errori.concat("Errori con update del contenuto del documento checked out: " + nodeCheckedOut );
				model.put("errore",errori);
				return model;
			}
			newDoc = coci.checkin(nodeCheckedOut, vproprs);
			logger.debug("Checkin del file: " + newDoc);
		}

		model.put("content", newDoc.getId());
		model.put("errore", errori);
		model.put("mimetype", mimetype);
		return model;
	}&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Feb 2022 21:28:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131117#M35409</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-02-24T21:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: node name cm:name changed when check-in node after update (Java Foundation API)</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131118#M35410</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;SPAN&gt;Abhinav:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you for your answer. I tried your suggestion, but I get an error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Caused by: org.alfresco.service.cmr.repository.DuplicateChildNodeNameException: Duplicate child name not allowed:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;This happens in this line:&amp;nbsp;ns.setProperties(nodeCheckedOut, propsFile);&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;}else {
			NodeRef nodeCheckedOut = coci.checkout(nr);
			Map&amp;lt;String,Serializable&amp;gt; vproprs = new HashMap&amp;lt;String,Serializable&amp;gt;();
			vproprs.put(Version.PROP_DESCRIPTION, "Nuova versione contenuto");
			ContentWriter writer = cs.getWriter(nodeCheckedOut, ContentModel.PROP_CONTENT, true);
			writer.setMimetype(mimetype);
			ns.setProperties(nodeCheckedOut, propsFile);&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;It's like the CHECKED OUT file is created at the same level of the original file.....&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Any idea to solve this issue?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Thank you .&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 09:28:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131118#M35410</guid>
      <dc:creator>euleon</dc:creator>
      <dc:date>2022-02-28T09:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: node name cm:name changed when check-in node after update (Java Foundation API)</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131119#M35411</link>
      <description>&lt;P&gt;You can try checkin after content updates and then set the properties.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 22:37:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/node-name-cm-name-changed-when-check-in-node-after-update-java/m-p/131119#M35411</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-03-04T22:37:45Z</dc:date>
    </item>
  </channel>
</rss>

