コード例 #1
0
 @Override
 public NameTransformer findUnwrappingNameTransformer(AnnotatedMember member) {
   JsonUnwrapped ann = _findAnnotation(member, JsonUnwrapped.class);
   // if not enabled, just means annotation is not enabled; not necessarily
   // that unwrapping should not be done (relevant when using chained introspectors)
   if (ann == null || !ann.enabled()) {
     return null;
   }
   String prefix = ann.prefix();
   String suffix = ann.suffix();
   return NameTransformer.simpleTransformer(prefix, suffix);
 }