|
1 |
| package com.agical.rmock.core.exception.manager; |
|
2 |
| |
|
3 |
| import com.agical.rmock.core.configuration.RMockServiceFactory; |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| |
|
10 |
| public class ExceptionVerifierFactory extends Object implements RMockServiceFactory { |
|
11 |
| |
|
12 |
11
| public ExceptionVerifierFactory() {
|
|
13 |
11
| super();
|
|
14 |
| } |
|
15 |
| |
|
16 |
7
| public Object createService() {
|
|
17 |
7
| return new ExceptionVerifierImpl();
|
|
18 |
| } |
|
19 |
| |
|
20 |
7
| public boolean canCreateService() {
|
|
21 |
7
| return true;
|
|
22 |
| } |
|
23 |
| |
|
24 |
8
| public Class getServiceType() {
|
|
25 |
8
| return ExceptionVerifier.class;
|
|
26 |
| } |
|
27 |
| |
|
28 |
| } |