Matthias Köster

Results 41 comments of Matthias Köster

Use case: - get product categories which just have two product types, if you then exapnd the product type it will be fetched again and again.

Looks like javadoc in JDK 9 will add support for this: https://bugs.openjdk.java.net/browse/JDK-8044243

@crybat I'm sorry that we didn't reply to your request. And you are right that our current JVM SDK isn't prepared to support deserialization. That means that you have to...

Good introduction about walkmod can be found here: https://blog.walkmod.com/how-to-maintain-java-architectures-with-javapoet-and-walkmod-45611b1bc627

Another example can be found in `zones` and `types`. But this change will require some changes in our `sdk-base` project and for now I will just add another empty expansion...

I really like the idea and I think that we can generate some useful test fixtures with our annotation processor.

AssertJ provides an assertions generator (http://joel-costigliola.github.io/assertj/assertj-assertions-generator.html) which looks interesting. We should evaluate it and see if it works for our code. May be we can even create a separate issue...

Thanks for reporting these inconsistencies. We're currently working on improving our code generator to make the factory methods more consistent (see #1321) and as soon as we have finished that...

Right now our `AttributeDefinition` interface is used for creating new attribute definitions. But according to our API documentation, attribute definitions should be created with an `AttributeDefinitionDraft`. But the `AttributeDefinitionDraft` was...

I once used hystrix as a circuit breaker [https://github.com/Netflix/Hystrix](https://github.com/Netflix/Hystrix) and really liked it.