/**
* Return the value for the specified header, or <code>null</code> if this
* header has not been set. If more than one value was added for this
- * name, only the first is returned; use getHeaderValues() to retrieve all
- * of them.
+ * name, only the first is returned; use {@link #getHeaders(String)} to
+ * retrieve all of them.
*
* @param name Header name to look up
*/
public String getHeader(String name) { return null; }
public Collection<String> getHeaderNames() { return null; }
- public String[] getHeaderValues(@SuppressWarnings("unused") String name) {
- return null;
- }
+ public Collection<String> getHeaders(String name) { return null; }
public String getMessage() { return null; }
public int getStatus() { return -1; }
public void reset(@SuppressWarnings("unused") int status,
/** @deprecated */
@Deprecated
public void setStatus(int status, String message) {}
- public Collection<String> getHeaders(String name) { return null; }
}