Vitor Pamplona

Results 1304 comments of Vitor Pamplona

2. Can be solved with Feature Request #542 (Stripe Connect)

This is also important when you have separate bank accounts (Stripe Connect accounts) for each Organizer. It significantly improves the automation in the accounting side.

Keep in mind that if the ModelInfo files won't be provided by this project, apps that include offline use cases might need to cache all of them manually, upfront.

Also, we need a solution for [this](https://github.com/FasterXML/jackson-dataformat-xml/issues/525) before loading dynamic model infos.

The `primaryContextPath` idea is quite limiting. How would you do retrieves for different behaviors? This is a need. Something like: ``` context Patient define AllergiesOfPatient: [AllergyIntolerance through patient] // uses...

@JPercival @brynrhodes I am wondering if I should close this PR or if it's worth merging it as is. I think the ability to set up one final ObjectFactory for...

> Would be great to avoid using JAXB annotations if possible (that is, use Jackson ones) but this works as is too. I don't have a choice. :( The class...

ohhh! makes sense. Here's the class without JAXB, running into the same problem. ```java import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonSubTypes; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.dataformat.xml.XmlMapper; import org.testng.annotations.Test; import java.io.IOException; import java.util.List; import static...

Simplifying further to: ```java import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonSubTypes; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.dataformat.xml.XmlMapper; import org.testng.annotations.Test; import java.io.IOException; import java.util.List; import static org.junit.Assert.assertEquals; @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type") @JsonSubTypes({ @JsonSubTypes.Type(value =...

Some additional learnings: - Statically resolving the Type makes it pass: `mapper.readValue(xml, ClassInfo.class)` - Turning the `List element` into `ClassInfoElement element` also makes it work - Adding another Child class...