|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| WsMsgType.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 enumeration describes the possible webservices message types. | |
| 11 | * @author Francesco Russo (frusso@dev.java.net) | |
| 12 | * @version 4.0 | |
| 13 | * @since 3.0 | |
| 14 | */ | |
| 15 | @Deprecated | |
| 16 | public enum WsMsgType { | |
| 17 | /** | |
| 18 | * A webservice input message. | |
| 19 | */ | |
| 20 | INPUT_MSG, | |
| 21 | /** | |
| 22 | * A webservice output message. | |
| 23 | */ | |
| 24 | OUTPUT_MSG, | |
| 25 | /** | |
| 26 | * A webservice fault message. | |
| 27 | */ | |
| 28 | FAULT_MSG | |
| 29 | } |
|
||||||||||