What if I need to store few files in one object?
Is it possible to store multiple files using one dm_document? For example I'm doing: someObject.setContent(baos1); But I want to do: someObject.addContent(baos1); someObject.addContent(baos2); What is a better way for this? I know about Aspects and Renditions but as I understand it is not what I want.