Conditions | 1 |
Total Lines | 6 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package com.hltech.pact.gen.domain.client.jaxrs; |
||
14 | public Set<Class<?>> findJaxRsClients(String packageRoot) { |
||
15 | Set<Class<?>> jaxRsClients = new HashSet<>(); |
||
16 | jaxRsClients.addAll(classAnnotatedClients(packageRoot)); |
||
17 | jaxRsClients.addAll(methodAnnotatedClients(packageRoot)); |
||
18 | |||
19 | return jaxRsClients; |
||
20 | } |
||
34 |