Beispiel #1
0
 /**
  * Create the {@link ChangeParameterMetaData} "serializationType" value. Uses the value on the
  * DatabaseChangeProperty annotation or returns {@link SerializationType}.NAMED_FIELD as a
  * default.
  */
 @SuppressWarnings("UnusedParameters")
 protected SerializationType createSerializationTypeMetaData(
     String parameterName, DatabaseChangeProperty changePropertyAnnotation) {
   if (changePropertyAnnotation == null) {
     return SerializationType.NAMED_FIELD;
   }
   return changePropertyAnnotation.serializationType();
 }