Updated JCR Node | TimeStamp of File Un Affected | Community
Skip to main content
Level 2
April 3, 2017
Solved

Updated JCR Node | TimeStamp of File Un Affected

  • April 3, 2017
  • 4 replies
  • 4753 views

Hi All,

Use Case 1 -> Programmatically I check if a node exists from Java and if exists, I update jcr:data property of the jcs:content node.

Just to give you an idea node that gets modified programmatically is /content/fca-brands/na/ramtrucks/en_us/data/product_data/2017/jsons/accessories.js/jcr:content

Use Case 2 -> I got to CRX DE Lite and update some property on jcr:content node.

 

In Both cases above, if I go to this file accessories.js for which jcr:content node I updated and check the time stamp, I see it is NOT MODIFIED. It shows the creation timestamp only.

Is this expected? Can this behavior be altered to show the modified date when any property is changed ?

 

Thanks,

Sudha.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by joerghoh

Hi,

you can use

jcrNode.SetProperty("cq:lastModified,Calendar.getInstance());

to set this property to the current time.

Jörg

4 replies

MC_Stuff
Level 10
April 3, 2017

Hi Sudha, 

It should get modified. Please engage with support if it is reproducible.  

Thanks,

joerghoh
Adobe Employee
Adobe Employee
April 3, 2017

Hi,

the jcr:modfied property is not maintained automatically with any JCR operation. You need to modify it explicitly.

Jörg

Level 2
April 4, 2017

Thanks for responding.

My use case is ,

1. The only way these nodes get changed is from the back-end Java code.

2. If the nodes are not present, the code creates them and adds the relevant content.

3. If the nodes are already present, code simply updates the jcr:data property of the node.

So if I have to manually set is this the best approach?

jcrNode.setProperty("jcr:lastModified", value);

Can you let me know how I should populate the value for this case?

I see the current value is 2017-03-22T22:50:32.275+05:30

joerghoh
Adobe Employee
joerghohAdobe EmployeeAccepted solution
Adobe Employee
April 4, 2017

Hi,

you can use

jcrNode.SetProperty("cq:lastModified,Calendar.getInstance());

to set this property to the current time.

Jörg