Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FactoryBO |
|
| 1.0;1 |
1 | package booking.model.bo; | |
2 | ||
3 | import org.springframework.context.annotation.Bean; | |
4 | import org.springframework.context.annotation.Configuration; | |
5 | import org.springframework.context.annotation.Scope; | |
6 | ||
7 | @Configuration | |
8 | 6 | public class FactoryBO { |
9 | ||
10 | @Bean(name = { "servicesBO" }) | |
11 | @Scope("singleton") | |
12 | public ServicesBO servicesBO() { | |
13 | 6 | return new ServicesBO(); |
14 | } | |
15 | ||
16 | } |