Get the value of a header. @param name the header name @return the header value
(String name)
| 401 | * @return the header value |
| 402 | */ |
| 403 | public String getHeader(String name) { |
| 404 | MessageBytes mh = getValue(name); |
| 405 | return mh != null ? mh.toStringType() : null; |
| 406 | } |
| 407 | |
| 408 | // -------------------- Removing -------------------- |
| 409 |