MCPcopy
hub / github.com/tirth8205/code-review-graph / JpaOrderRepository

Class JpaOrderRepository

tests/fixtures/SpringDI.java:19–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18// @Repository stereotype — Spring-managed bean
19@Repository
20class JpaOrderRepository implements OrderRepository {
21 @Override
22 public void save(Order order) {}
23
24 @Override
25 public Order findById(Long id) { return null; }
26}
27
28// @Service with @Autowired field injection
29@Service

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected