add responseModel to tranfer new response

This commit is contained in:
hmm 2014-08-27 08:38:16 +08:00
parent e1b064319a
commit 64f433ce2a
2 changed files with 23 additions and 0 deletions

View File

@ -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;
}
}

View File

@ -0,0 +1,6 @@
/**
*
*/
$(function() {
alert("hello world!");
});