Early Access builds of JDK 8u112 b03, JDK 9 b128 are available on java.net

2016-07-22 Thread Rory O'Donnell
Hi Florian, Early Access b128 for JDK 9 is available on java.net, summary of changes are listed here . Early Access b127 (#5304) for JDK 9 with Project Jigsaw is

How to pass "extension data" for different bindings?

2016-07-22 Thread Vyacheslav Pascarel
Hi everyone, I am trying to use pass some additional non-CMIS data from client to server. For example, in case of creating a new type in the target ECM, simple CMIS type definition may not be sufficient to pass all the data. I was looking at using ExtensionsData since it is coming as an input i

Re: How to pass "extension data" for different bindings?

2016-07-22 Thread Florian Müller
Hi Vyacheslav, Your example is actually the exception. When you create a type you can add extension data to almost every levels of the type definition and it will be transferred to the server. That is supported by all bindings. But this has nothing to do extensions you find in the method signa

RE: How to pass "extension data" for different bindings?

2016-07-22 Thread Vyacheslav Pascarel
Hi Florian, Thanks for pointing to example with TypeDefinition. I was looking hard at "extension" parameter for binding methods and completely missed that TypeDefinition interface and others extend ExtensionsData. That solves my issues for many create/update scenarios. You also mentioned extens