001/** 002 * Copyright (C) 2014 Universidade de Aveiro, DETI/IEETA, Bioinformatics Group - http://bioinformatics.ua.pt/ 003 * 004 * This file is part of Dicoogle/dicoogle. 005 * 006 * Dicoogle/dicoogle is free software: you can redistribute it and/or modify 007 * it under the terms of the GNU General Public License as published by 008 * the Free Software Foundation, either version 3 of the License, or 009 * (at your option) any later version. 010 * 011 * Dicoogle/dicoogle is distributed in the hope that it will be useful, 012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 014 * GNU General Public License for more details. 015 * 016 * You should have received a copy of the GNU General Public License 017 * along with Dicoogle. If not, see <http://www.gnu.org/licenses/>. 018 */ 019 020package pt.ua.dicoogle.core; 021 022/** 023 * 024 * @author carloscosta 025 * @MarkedForDeath currently unused 026 */ 027public class QueryResultRecord { 028 private String patientName; 029 private String PatientID; 030 private String Modality; 031 private String StudyDate; 032 private String FilePath; 033 private byte[] Thumbnail; 034 035 public QueryResultRecord(String patientName, String PatientID, 036 String Modality, String StudyDate, 037 String FilePath, byte[] Thumbnail){ 038 this.patientName = patientName; 039 this.PatientID = PatientID; 040 this.Modality = Modality; 041 this.StudyDate = StudyDate; 042 this.FilePath = FilePath; 043 this.Thumbnail = Thumbnail; 044 } 045 046 public String getPatientName() { 047 return patientName; 048 } 049 050 public void setPatientName(String patientName) { 051 this.patientName = patientName; 052 } 053 054 public String getPatientID() { 055 return PatientID; 056 } 057 058 public void setPatientID(String PatientID) { 059 this.PatientID = PatientID; 060 } 061 062 public String getModality() { 063 return Modality; 064 } 065 066 public void setModality(String Modality) { 067 this.Modality = Modality; 068 } 069 070 public String getStudyDate() { 071 return StudyDate; 072 } 073 074 public void setStudyDate(String StudyDate) { 075 this.StudyDate = StudyDate; 076 } 077 078 public String getFilePath() { 079 return FilePath; 080 } 081 082 public void setFilePath(String FilePath) { 083 this.FilePath = FilePath; 084 } 085 086 public byte[] getThumbnail() { 087 return Thumbnail; 088 } 089 090}