|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
IWsHelperFactory.java | - | - | - | - |
|
1 | /** | |
2 | * JTRunner is free software; you can redistribute it and/or modify it under the | |
3 | * terms of the GNU General Public License as published by the Free Software | |
4 | * Foundation; either version 2, or (at your option) any later version. | |
5 | */ | |
6 | ||
7 | package jtr.ws; | |
8 | ||
9 | /** | |
10 | * This interface defines the contract between the JTR framework and every | |
11 | * <i>ws-plugin</i> implementation.<br> | |
12 | * It is possible to plug into the JTR framework different webservices | |
13 | * access/invocation providers just providing a new <code>IWsHelperFactory</code> | |
14 | * implementation along with at least a custom <code>IWsHelper</code> implementation. | |
15 | * | |
16 | * @author Francesco Russo (frusso@dev.java.net) | |
17 | * @version 4.0 | |
18 | * @since 3.0 | |
19 | */ | |
20 | public interface IWsHelperFactory { | |
21 | ||
22 | /** | |
23 | * Get a new instance of the concrete <code>IWsHelper</code> implementation | |
24 | * associated with the configured <code>IWsHelperFactory</code> class. | |
25 | * @return IWsHelper | |
26 | */ | |
27 | public IWsHelper getInstance(); | |
28 | } |
|