001package org.dcm4che3.tool.stowrs.test;
002
003import org.dcm4che3.data.Attributes;
004import org.dcm4che3.tool.common.SimpleHTTPResponse;
005
006public class StowRSResponse extends SimpleHTTPResponse{
007
008    Attributes responseAttributes = new Attributes();
009    public StowRSResponse(int status, String message) {
010        super(status, message);
011    }
012    
013    public StowRSResponse(int status, String message, Attributes responseAttrs) {
014        super(status, message);
015        this.responseAttributes = responseAttrs;
016    }
017
018    public Attributes getResponseAttributes() {
019        return responseAttributes;
020    }
021}