/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.signserver.validationservice.server; /** * * @author PHUONGVU */ public class DCSignerResponse { private int responseCode; private String responseMessage; private byte[] responseData; public DCSignerResponse() { } public DCSignerResponse(int responseCode, String responseMessage) { this.responseCode = responseCode; this.responseMessage = responseMessage; } public DCSignerResponse(int responseCode, String responseMessage, byte[] responseData) { this.responseCode = responseCode; this.responseMessage = responseMessage; this.responseData = responseData; } public int getResponseCode() { return responseCode; } public void setResponseCode(int responseCode) { this.responseCode = responseCode; } public String getResponseMessage() { return responseMessage; } public void setResponseMessage(String responseMessage) { this.responseMessage = responseMessage; } public byte[] getResponseData() { return responseData; } public void setResponseData(byte[] responseData) { this.responseData = responseData; } }