()
| 122 | } |
| 123 | |
| 124 | public static String getCurrentDateTime() { |
| 125 | Date d = new Date(); |
| 126 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
| 127 | return sdf.format(d); |
| 128 | } |
| 129 | |
| 130 | public static byte[] getHttpRequestBody(byte[] request) { |
| 131 | int bodyOffset = -1; |
no outgoing calls
no test coverage detected