cancel
Showing results for 
Search instead for 
Did you mean: 

parsing properties of Node?

targa2000
Champ in-the-making
Champ in-the-making
Would anyone have an example of parsing through the properties of a org.alfresco.web.bean.repository.Node?
1 REPLY 1

savic_prvoslav
Champ on-the-rise
Champ on-the-rise
parsing what does that mean. list allproperties?

Node n=some node
   Map<String, Object> map= n.getProperties();
   Iterator<String> it= map.keySet().iterator();
   while(it.hasNext())
   {
       System.out.println(it.next());
   }