add responseModel to tranfer new response
This commit is contained in:
parent
e1b064319a
commit
64f433ce2a
|
@ -0,0 +1,17 @@
|
||||||
|
package org.bench4q.recorder.httpcapture;
|
||||||
|
|
||||||
|
public class ResponseModel {
|
||||||
|
private byte[] response;
|
||||||
|
|
||||||
|
public byte[] getResponse() {
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setResponse(byte[] response) {
|
||||||
|
this.response = response;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ResponseModel(byte[] response){
|
||||||
|
this.response = response;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
$(function() {
|
||||||
|
alert("hello world!");
|
||||||
|
});
|
Loading…
Reference in New Issue