Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IResponseSendable |
|
| 1.0;1 |
1 | package ca.uhn.hl7v2.hoh.api; | |
2 | ||
3 | import ca.uhn.hl7v2.hoh.encoder.ResponseCode; | |
4 | ||
5 | /** | |
6 | * <p> | |
7 | * Response message to be returned by a server application. | |
8 | * </p> | |
9 | */ | |
10 | public interface IResponseSendable<T> extends ISendable<T> { | |
11 | ||
12 | ResponseCode getResponseCode(); | |
13 | ||
14 | } |