David Webb

Results 7 comments of David Webb

I want to report the same issue, and its happening on 2.9.2 for me. This attribute: `private Map highlight;` Resolves in the JSON as: ``` "MapOfstringAndListOfstring": { "type": "object", "title":...

I was able to prevent the bad reference from being generated by adding this to my `Docket`. ``` .alternateTypeRules( AlternateTypeRules.newRule( typeResolver.resolve(Map.class, String.class, typeResolver.resolve(Map.class, String.class, typeResolver.resolve(List.class, String.class))), typeResolver.resolve(Map.class, String.class, WildcardType.class), Ordered.HIGHEST_PRECEDENCE))...

@dingziyang `import com.fasterxml.classmate.TypeResolver;`

@dingziyang Just replace my `String.class` with your objects. Something like this: ``` .alternateTypeRules( AlternateTypeRules.newRule( typeResolver.resolve(ResultVO.class, typeResolver.resolve(Map.class, String.class, typeResolver.resolve(List.class, DicBase.class))), typeResolver.resolve(ResultVO.class, WildcardType.class), Ordered.HIGHEST_PRECEDENCE)) ``` I cannot test this, but you should...

This is a must have for oauth so that the user doesn't have to login everytime an accessToken Expires. Any update on timeline for this one?

There is a PR for this just waiting for review and merging. https://github.com/docusign/docusign-esign-java-client/pull/202

What about defining the relationship type in addition to the container layout? `peer` is horizontal `hierarchical` is vertical and the default ``` a: Node 1 b: Node 2 c: Node...