BusinessKey annotation = (BusinessKey) method.getAnnotation(BusinessKey.class);
return create(annotation);
}
private BusinessKeyAnnotation create(BusinessKey annotation) {
return annotation == null ? null : new BusinessKeyAnnotation(annotation.value());
}