Converts an AJP coded HTTP method to the method name. @param code the coded value @return the string value of the method
(final int code)
| 283 | * @return the string value of the method |
| 284 | */ |
| 285 | public static String getMethodForCode(final int code) { |
| 286 | return methodTransArray[code]; |
| 287 | } |
| 288 | |
| 289 | /** |
| 290 | * Stored method code value. |