Hi,

CMIS has no hidden folder concept. It's the responsibility of the repository to filter (or not filter) whatever it defines as hidden. If the repository doesn't do it, the client has to do it. Something like that in your display loop should do the trick:


Boolean isHidden = cmisObject.getPropertyValue("isHiddenContainer");

if(Boolean.TRUE.equals(isHidden)) {
  // skip
}


- Florian


Am Mittwoch, den 04.01.2012, 16:39 +0100 schrieb learning coding <[email protected]>:
Hi ,

There are some folder in the root folder which are Hidden
(isHiddenContainer = true) in the repository.
i am using Java code, to see the folder in the root folder.

When i display the folders , i can see all the folder even of those whose
isHiddenContainer =true.

i dont want show the hidden floder while displaying.

Can you tell me what method should i use to check this property.

thank you

regards

Reply via email to