com.taobao.hsf.invocation.ResponseContext Maven / Gradle / Ivy
package com.taobao.hsf.invocation;
/**
* Created by ifree613 on 2017/8/11.
*/
public class ResponseContext {
private byte serializeType;
private byte protocolType;
private long requestId;
public byte getSerializeType() {
return serializeType;
}
public void setSerializeType(byte serializeType) {
this.serializeType = serializeType;
}
public byte getProtocolType() {
return protocolType;
}
public void setProtocolType(byte protocolType) {
this.protocolType = protocolType;
}
public long getRequestId() {
return requestId;
}
public void setRequestId(long requestId) {
this.requestId = requestId;
}
}